Changeset 2968
- Timestamp:
- 09/30/08 17:17:55 (3 months ago)
- Location:
- branches/1.0
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/config/AgaviConfigCache.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/CHANGELOG
r2947 r2968 5 5 ------------------------------- 6 6 7 FIX: Per-module config_handlers.xml will cause "unsupported operand types" fatal error with debug mode off (#867) (David) 7 8 FIX: AgaviXmlConfigDomElement::hasChild() does not pass on $namespaceUri argument (#865) (David) 8 9 -
branches/1.0/src/config/AgaviConfigCache.class.php
r2885 r2968 349 349 350 350 /** 351 * add the config handlers from the given config file 351 * Add the config handlers from the given config file. 352 * Existing handlers will not be overwritten. 352 353 * 353 * existing handlers will not be overwritten 354 * 355 * @param string the path to the config_handlers.xml 354 * @param string The path to a config_handlers.xml file. 356 355 * 357 356 * @author Felix Gilcher <felix.gilcher@bitextender.com> 358 357 * @since 1.0.0 359 *360 358 */ 361 359 public static function loadConfigHandlersFile($cfg) 362 360 { 363 self::$handlers += include AgaviConfigCache::checkConfig($cfg);361 self::$handlers = (array)self::$handlers + include(AgaviConfigCache::checkConfig($cfg)); 364 362 } 365 363

