Aleksander Machniak
2012-12-21 268a28efb25193e5f48e7ba8e41f0bca8306c34e
Don't force 'stop' action on last rule in a script
1 files modified
2 ■■■ changed files
plugins/managesieve/lib/rcube_sieve.php 2 ●●● patch | view | raw | blame | history
plugins/managesieve/lib/rcube_sieve.php
@@ -328,7 +328,7 @@
                        continue 2;
                    }
                }
                if (empty($script->content[$idx+1]) || $script->content[$idx+1]['type'] != 'if') {
                if (!empty($script->content[$idx+1]) && $script->content[$idx+1]['type'] != 'if') {
                    $script->content[$idx]['actions'][] = array('type' => 'stop');
                }
            }