Changeset 51
- Timestamp:
- 04/12/06 15:24:51 (3 years ago)
- Files:
-
- branches/2.2/classes/phing/Phing.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/classes/phing/Phing.php
r11 r51 811 811 } 812 812 813 $path = strtr($dotPath, '.', DIRECTORY_SEPARATOR) . ".php"; 813 $dotClassname = basename($dotPath); 814 $dotClassnamePos = strlen($dotPath) - strlen($dotClassname); 815 $classFile = strtr($dotClassname, '.', DIRECTORY_SEPARATOR) . ".php"; 816 $path = substr_replace($dotPath, $classFile, $dotClassnamePos); 814 817 815 818 Phing::__import($path, $classpath);
