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:
Sam Minnee 2010-10-04 04:46:55 +00:00
parent cc355a4f18
commit 310272bc7e

View File

@ -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);
}
}