- Timestamp:
- 10/01/08 09:48:27 (3 months ago)
- Location:
- branches/felix-testing-implementation
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
src/config/AgaviConfigCache.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/felix-testing-implementation
- Property svnmerge-integrated changed from /branches/1.0:1-2892,2894-2964 /branches/dominik-validation-argument-sources:1-2901 to /branches/1.0:1-2892,2894-2968 /branches/dominik-validation-argument-sources:1-2901
-
branches/felix-testing-implementation/src/config/AgaviConfigCache.class.php
r2887 r2969 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

