diff options
author | Derek Jones <derek.jones@ellislab.com> | 2009-07-29 16:19:18 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2009-07-29 16:19:18 +0200 |
commit | f0a9b332445977cfb05fee2dacc02667946a9cd2 (patch) | |
tree | 740e6f0bca8932f75c60ba7aa35831783e567764 /system/codeigniter/Common.php | |
parent | de8f409e84c4b2c428cba3f2845f2658d3db9b90 (diff) |
PHP 5.3.0 compatibility changes
Diffstat (limited to 'system/codeigniter/Common.php')
-rw-r--r-- | system/codeigniter/Common.php | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/system/codeigniter/Common.php b/system/codeigniter/Common.php index f45c85c26..1ffed6a0c 100644 --- a/system/codeigniter/Common.php +++ b/system/codeigniter/Common.php @@ -150,17 +150,35 @@ function &load_class($class, $instantiate = TRUE) if ($is_subclass == TRUE) { $name = config_item('subclass_prefix').$class; - $objects[$class] =& new $name(); + + $objects[$class] =& instantiate_class(new $name()); return $objects[$class]; } $name = ($class != 'Controller') ? 'CI_'.$class : $class; - - $objects[$class] =& new $name(); + + $objects[$class] =& instantiate_class(new $name()); return $objects[$class]; } /** + * Instantiate Class + * + * Returns a new class object by reference, used by load_class() and the DB class. + * Required to retain PHP 4 compatibility and also not make PHP 5.3 cry. + * + * Use: $obj =& instantiate_class(new Foo()); + * + * @access public + * @param object + * @return object + */ +function &instantiate_class(&$class_object) +{ + return $class_object; +} + +/** * Loads the main config.php file * * @access private |