Changeset 2684
- Timestamp:
- 05/21/08 13:48:11 (2 months ago)
- Files:
-
- trunk/system/core/Config.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/system/core/Config.php
r2683 r2684 33 33 // Load core configuration 34 34 self::$conf['core'] = self::load('core'); 35 36 // Re-parse the include paths37 self::include_paths(TRUE);38 35 } 39 36 … … 127 124 * @return TRUE 128 125 */ 129 public function clear($key)126 public static function clear($key) 130 127 { 131 128 unset(self::$conf[$key]); … … 183 180 } 184 181 182 // Re-parse the include paths 183 self::include_paths(TRUE); 184 185 185 return $config; 186 186 }
