diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-10-14 13:19:37 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-10-14 13:19:37 +0200 |
commit | c1bc8f6c827a27540b5510b42dcc65b39d38f2c1 (patch) | |
tree | b121506ed0e8713e8e294ca61d3293b2ae2ef502 /program/lib/Roundcube/rcube_plugin_api.php | |
parent | 075574c81f6d8c1db3c2f2dba1a3f084fcb810d8 (diff) |
Change so abort=true does not break the loop in exec_hook(), provide a new 'break' flag for this purpose
Diffstat (limited to 'program/lib/Roundcube/rcube_plugin_api.php')
-rw-r--r-- | program/lib/Roundcube/rcube_plugin_api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_plugin_api.php b/program/lib/Roundcube/rcube_plugin_api.php index 33f04eaa5..5a25ada02 100644 --- a/program/lib/Roundcube/rcube_plugin_api.php +++ b/program/lib/Roundcube/rcube_plugin_api.php @@ -403,7 +403,7 @@ class rcube_plugin_api $args = $ret + $args; } - if ($args['abort']) { + if ($args['break']) { break; } } |