diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-08-17 13:26:12 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-08-17 13:26:12 +0000 |
| commit | 3f04effa0058c1132fdba316dc577c8e7e7fdc4a (patch) | |
| tree | 57b6b9e30e71ec1fb54be182796396e5a0975bcd | |
| parent | 7ea80e6aef508c3af27f60a8b59b095159d0c0b4 (diff) | |
- Fixed handling of folder names with unicode characters
git-svn-id: https://svn.roundcube.net/trunk@5084 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | plugins/acl/acl.js | 2 | ||||
| -rw-r--r-- | plugins/acl/acl.php | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/acl/acl.js b/plugins/acl/acl.js index 3cca7bf1e..d78607690 100644 --- a/plugins/acl/acl.js +++ b/plugins/acl/acl.js @@ -1,7 +1,7 @@ /** * ACL plugin script * - * @version 0.5 + * @version 0.6 * @author Aleksander Machniak <alec@alec.pl> */ diff --git a/plugins/acl/acl.php b/plugins/acl/acl.php index 33f84dbc3..1b021d00a 100644 --- a/plugins/acl/acl.php +++ b/plugins/acl/acl.php @@ -3,7 +3,7 @@ /** * Folders Access Control Lists Management (RFC4314, RFC2086) * - * @version 0.5 + * @version 0.6 * @author Aleksander Machniak <alec@alec.pl> * * @@ -427,7 +427,7 @@ class acl extends rcube_plugin */ private function action_save() { - $mbox = trim(get_input_value('_mbox', RCUBE_INPUT_GPC, true, 'UTF7-IMAP')); + $mbox = trim(get_input_value('_mbox', RCUBE_INPUT_GPC, true)); // UTF7-IMAP $user = trim(get_input_value('_user', RCUBE_INPUT_GPC)); $acl = trim(get_input_value('_acl', RCUBE_INPUT_GPC)); $oldid = trim(get_input_value('_old', RCUBE_INPUT_GPC)); @@ -464,7 +464,7 @@ class acl extends rcube_plugin */ private function action_delete() { - $mbox = trim(get_input_value('_mbox', RCUBE_INPUT_GPC, true, 'UTF7-IMAP')); + $mbox = trim(get_input_value('_mbox', RCUBE_INPUT_GPC, true)); //UTF7-IMAP $user = trim(get_input_value('_user', RCUBE_INPUT_GPC)); $user = explode(',', $user); @@ -495,7 +495,7 @@ class acl extends rcube_plugin return; } - $this->mbox = trim(get_input_value('_mbox', RCUBE_INPUT_GPC, true, 'UTF7-IMAP')); + $this->mbox = trim(get_input_value('_mbox', RCUBE_INPUT_GPC, true)); // UTF7-IMAP $advanced = trim(get_input_value('_mode', RCUBE_INPUT_GPC)); $advanced = $advanced == 'advanced' ? true : false; |
