Fix exec_hook() so handlers added inside the hook are not omitted

pull/264/head
Aleksander Machniak 10 years ago
parent 758e7c47e9
commit 0a5841702f

@ -400,8 +400,9 @@ class rcube_plugin_api
$args += array('abort' => false);
array_push($this->exec_stack, $hook);
foreach ((array)$this->handlers[$hook] as $callback) {
$ret = call_user_func($callback, $args);
// Use for loop here, so handlers added in the hook will be executed too
for ($i = 0; $i < count($this->handlers[$hook]); $i++) {
$ret = call_user_func($this->handlers[$hook][$i], $args);
if ($ret && is_array($ret)) {
$args = $ret + $args;
}

Loading…
Cancel
Save