mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: call_user_func_array changed to PHP 5.1 compatible notation (from r101099)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@111586 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
cc355a4f18
commit
310272bc7e
@ -134,7 +134,7 @@ abstract class Object {
|
||||
if($firstArg !== null) array_unshift($args, $firstArg);
|
||||
array_unshift($args, $class);
|
||||
|
||||
self::$_cache_inst_args[$classSpec.$firstArg] = call_user_func_array('Object::create', $args);
|
||||
self::$_cache_inst_args[$classSpec.$firstArg] = call_user_func_array(array('Object','create'), $args);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user