diff options
| author | Romain LE DISEZ <romain.git@ledisez.net> | 2009-07-19 00:49:47 +0200 |
|---|---|---|
| committer | Romain LE DISEZ <romain.git@ledisez.net> | 2009-07-19 00:49:47 +0200 |
| commit | 719c59e0402464a0e2b14915f6d10218ff5d4729 (patch) | |
| tree | 5dd3f18fd60fd63df114ecf5698d28ba39680af6 /modules/gallery/views/permissions_form.html.php | |
| parent | c78744d4f8a0cfad7ca5aa3d2867fb66d4c6b8c4 (diff) | |
Use BOOLEAN instead of integer to describe the permissions :
- DENY = false
- ALLOW = true
- UNKNOW = null (for intent only)
- INHERIT = null (for cache)
Upgrade is not included for now.
Diffstat (limited to 'modules/gallery/views/permissions_form.html.php')
| -rw-r--r-- | modules/gallery/views/permissions_form.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/views/permissions_form.html.php b/modules/gallery/views/permissions_form.html.php index 0f60070a..ee5e3a24 100644 --- a/modules/gallery/views/permissions_form.html.php +++ b/modules/gallery/views/permissions_form.html.php @@ -26,7 +26,7 @@ </a> </td> <? else: ?> - <? if ($intent === null): ?> + <? if ($intent === access::INHERIT): ?> <? if ($allowed): ?> <td class="gAllowed"> <a href="javascript:set('allow',<?= $group->id ?>,<?= $permission->id ?>,<?= $item->id ?>)" |
