BUGFIX: call_user_func_array changed to PHP 5.1 compatible notation

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@101099 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Geoff Munn 2010-03-16 01:11:24 +00:00 committed by Sam Minnee
parent 43b0ee21c6
commit 9395633251

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