diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-09-20 12:17:30 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-09-20 12:17:30 +0200 |
commit | 439fd773e3783145c31e728ae6b6876f1efa9973 (patch) | |
tree | a65de8c3ee1a33a352a72ec116fa51214a496b95 /plugins/managesieve/lib/Roundcube | |
parent | 889c76cbdc05992b060ded9984690285588e285b (diff) |
Fix typo in last commit and some managesieve tests (where we changed
:comparator position)
Diffstat (limited to 'plugins/managesieve/lib/Roundcube')
-rw-r--r-- | plugins/managesieve/lib/Roundcube/rcube_sieve_script.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/managesieve/lib/Roundcube/rcube_sieve_script.php b/plugins/managesieve/lib/Roundcube/rcube_sieve_script.php index f6a2f7dd5..6fbc3f89d 100644 --- a/plugins/managesieve/lib/Roundcube/rcube_sieve_script.php +++ b/plugins/managesieve/lib/Roundcube/rcube_sieve_script.php @@ -943,7 +943,7 @@ class rcube_sieve_script if (preg_match('/^(value|count)-([gteqnl]{2})/', $test['type'], $m)) { array_push($exts, 'relational'); - $out .= ' :' . $m[1] . ' "' . $m[2]; + $out .= ' :' . $m[1] . ' "' . $m[2] . '"'; } else { if ($test['type'] == 'regex') { |