diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-22 17:37:29 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-22 17:37:29 +0000 |
| commit | d9028f04b5df546064d6aa7292296fb85c3bc960 (patch) | |
| tree | 905a440715dddfd64758b5478f184124a0f9ec80 /plugins/managesieve/lib | |
| parent | 45d79fa89f72c61e9ab9565d0f4705f6721baf0a (diff) | |
- Fixed disabling rules with many tests
- Small css unification with core
git-svn-id: https://svn.roundcube.net/trunk@3398 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'plugins/managesieve/lib')
| -rw-r--r-- | plugins/managesieve/lib/rcube_sieve.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/managesieve/lib/rcube_sieve.php b/plugins/managesieve/lib/rcube_sieve.php index 649967f57..1ad887a97 100644 --- a/plugins/managesieve/lib/rcube_sieve.php +++ b/plugins/managesieve/lib/rcube_sieve.php @@ -467,7 +467,7 @@ class rcube_sieve_script $script .= 'if' . ($rule['disabled'] ? ' false #' : ''); $script .= $rule['join'] ? ' allof (' : ' anyof ('; if (sizeof($tests) > 1) - $script .= implode(",\n\t", $tests); + $script .= implode(", ", $tests); else if (sizeof($tests)) $script .= $tests[0]; else |
