From d9028f04b5df546064d6aa7292296fb85c3bc960 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 22 Mar 2010 17:37:29 +0000 Subject: - 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 --- plugins/managesieve/lib/rcube_sieve.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/managesieve/lib') 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 -- cgit v1.2.3