Changeset 1207 for trunk/src/util/AgaviToolkit.class.php
- Timestamp:
- 11/01/06 23:41:45 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/util/AgaviToolkit.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/AgaviToolkit.class.php
r1180 r1207 53 53 54 54 return false; 55 } 56 57 /** 58 * Normalizes a path to contain only '/' as path delimiter. 59 * 60 * @param string The path to normalize. 61 * 62 * @return string The unified bool The mkdir return value. 63 * 64 * @author Dominik del Bondio <ddb@bitxtender.com> 65 * @since 0.11.0 66 */ 67 public static function normalizePath($path) 68 { 69 return str_replace('\\', '/', $path); 55 70 } 56 71

