commit | 349b09c2af14c79c332a6b7d5e3b653a8ad527b7 | [log] [tgz] |
---|---|---|
author | admin <devnull@localhost> | Fri Sep 15 20:07:00 2006 +0000 |
committer | admin <devnull@localhost> | Fri Sep 15 20:07:00 2006 +0000 |
tree | 739dd6bad65da8948eacb192c4b15f115f7f6836 | |
parent | af436d7ceb4ea5afb96e3cbe1545ba9ace3d062a [diff] [blame] |
diff --git a/system/codeigniter/Common.php b/system/codeigniter/Common.php index 1b190e2..6d76fb0 100644 --- a/system/codeigniter/Common.php +++ b/system/codeigniter/Common.php
@@ -38,7 +38,7 @@ */ function &_load_class($class, $instantiate = TRUE) { - static $objects; + static $objects = array(); if ( ! isset($objects[$class])) { @@ -63,7 +63,7 @@ } else { - $objects[$class] = FALSE; + $objects[$class] = TRUE; } }