diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-14 18:19:13 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-14 18:19:13 +0100 |
commit | 022f510365c2656737842c92b77c496e7d2f1044 (patch) | |
tree | 2807bb4af4f180ab315bf85e285ae9c6112944ee /plugins/managesieve/lib/Roundcube | |
parent | 9a0900e4a100fe93517573be1a1286992b6a2620 (diff) |
Fix issue in displaying filter form when managesieve_kolab_master=true
and sieve variables extension is supported by the server (#1489599)
Diffstat (limited to 'plugins/managesieve/lib/Roundcube')
-rw-r--r-- | plugins/managesieve/lib/Roundcube/rcube_sieve_script.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/managesieve/lib/Roundcube/rcube_sieve_script.php b/plugins/managesieve/lib/Roundcube/rcube_sieve_script.php index 6fbc3f89d..c6ad78add 100644 --- a/plugins/managesieve/lib/Roundcube/rcube_sieve_script.php +++ b/plugins/managesieve/lib/Roundcube/rcube_sieve_script.php @@ -585,6 +585,7 @@ class rcube_sieve_script if ($rule[0]['type'] == 'set') { unset($rule[0]['type']); $this->vars[] = $rule[0]; + unset($rule); } else { $rule = array('actions' => $rule); |