Changeset 3067
- Timestamp:
- 07/11/2008 10:03:11 AM (5 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Router.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Router.php
r3061 r3067 67 67 68 68 // Remove all dot-paths from the URI, they are not valid 69 self::$current_uri = preg_replace('#\.++ /++#', '', self::$current_uri);69 self::$current_uri = preg_replace('#\.++\s*/++#', '', self::$current_uri); 70 70 71 71 // At this point segments, rsegments, and current URI are all the same … … 98 98 // Add the segment to the search path 99 99 $controller_path .= $segment; 100 100 101 101 102 $found = FALSE;
