mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-21 21:59:12 +01:00
call_user_func_array($callback, array_values($args));
This commit is contained in:
parent
28e2772c13
commit
665240acd3
1 changed files with 2 additions and 2 deletions
|
@ -846,7 +846,7 @@ namespace gp\tool{
|
|||
|
||||
if( !empty($info['method']) ){
|
||||
if( method_exists($object, $info['method']) ){
|
||||
$args[0] = call_user_func_array([$object, $info['method']], $args);
|
||||
$args[0] = call_user_func_array([$object, $info['method']], array_values($args));
|
||||
}elseif( $has_script ){
|
||||
self::ExecError(\CMS_NAME . ' Error: Addon hook method doesn\'t exist (1).', $info, 'method');
|
||||
}
|
||||
|
@ -876,7 +876,7 @@ namespace gp\tool{
|
|||
}
|
||||
|
||||
if( is_callable($callback) ){
|
||||
$args[0] = call_user_func_array($callback, $args);
|
||||
$args[0] = call_user_func_array($callback, array_values($args));
|
||||
}elseif( $has_script ){
|
||||
self::ExecError(\CMS_NAME.' Error: Addon hook method doesn\'t exist (2).', $info, 'method');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue