Changeset 2480
- Timestamp:
- 05/19/08 20:00:42 (8 months ago)
- Location:
- branches/0.11
- Files:
-
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
src/config/AgaviAutoloadConfigHandler.class.php (modified) (1 diff)
-
src/config/AgaviCompileConfigHandler.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/CHANGELOG
r2470 r2480 1 1 AGAVI CHANGELOG 2 2 =============== 3 4 0.11.2 RC1 (June ??, 2008) 5 -------------------------- 6 7 FIX: Static method AgaviBaseConfigHandler::replacePath() is used in object context in two config handlers (David) (#762) 8 3 9 4 10 0.11.1 (May 9, 2008) -
branches/0.11/src/config/AgaviAutoloadConfigHandler.class.php
r2258 r2480 66 66 $originalFile = $file; 67 67 // if the filename is not absolute we assume its relative to the app dir 68 $file = $this->replacePath($file);68 $file = self::replacePath($file); 69 69 70 70 $class = $entry->getAttribute('name'); -
branches/0.11/src/config/AgaviCompileConfigHandler.class.php
r2258 r2480 64 64 65 65 $file = AgaviToolkit::expandDirectives($file); 66 $file = $this->replacePath($file);66 $file = self::replacePath($file); 67 67 $file = realpath($file); 68 68

