diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-06-28 10:43:50 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-06-28 10:43:50 +0200 |
commit | b866a27364a66c436156732553b1fa638e046b8b (patch) | |
tree | e25c15085bd33100d4545307579f68cb5dd2b5f7 /plugins | |
parent | a60d139d873b77852658ddac04279b6f1e5570ce (diff) |
Fix handling of MYRIGHTS on private namespace roots - fixes issue where
in ACL plugin it wasn't possible to share INBOX folder (when it was a namespace prefix).
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/acl/acl.php | 16 | ||||
-rw-r--r-- | plugins/acl/package.xml | 4 |
2 files changed, 6 insertions, 14 deletions
diff --git a/plugins/acl/acl.php b/plugins/acl/acl.php index ab981ab89..8709f0b00 100644 --- a/plugins/acl/acl.php +++ b/plugins/acl/acl.php @@ -128,8 +128,10 @@ class acl extends rcube_plugin */ function folder_form($args) { - // Edited folder name (empty in create-folder mode) $mbox_imap = $args['options']['name']; + $myrights = $args['options']['rights']; + + // Edited folder name (empty in create-folder mode) if (!strlen($mbox_imap)) { return $args; } @@ -139,18 +141,8 @@ class acl extends rcube_plugin return $args; } */ - // Namespace root - if ($args['options']['is_root']) { - return $args; - } - // Get MYRIGHTS - if (!($myrights = $args['options']['rights'])) { - return $args; - } - - // Do nothing if no ACL support - if (!$this->rc->storage->get_capability('ACL')) { + if (empty($myrights)) { return $args; } diff --git a/plugins/acl/package.xml b/plugins/acl/package.xml index 7ea0f3297..5f8638474 100644 --- a/plugins/acl/package.xml +++ b/plugins/acl/package.xml @@ -13,9 +13,9 @@ <email>alec@alec.pl</email> <active>yes</active> </lead> - <date>2012-03-13</date> + <date>2012-06-28</date> <version> - <release>0.8</release> + <release>0.9</release> <api>0.7</api> </version> <stability> |