Index: trunk/extensions/Validator/includes/ParserHook.php |
— | — | @@ -371,7 +371,8 @@ |
372 | 372 | } |
373 | 373 | |
374 | 374 | public function runHook() { |
375 | | - return call_user_func_array( array( new $this->class(), $this->method ), func_get_args() ); |
| 375 | + $args = func_get_args(); |
| 376 | + return call_user_func_array( array( new $this->class(), $this->method ), $args ); |
376 | 377 | } |
377 | 378 | |
378 | 379 | } |
\ No newline at end of file |