Changeset 609 for trunk/system/libraries/Router.php
- Timestamp:
- 09/28/2007 06:19:02 PM (14 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Router.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Router.php
r600 r609 9 9 public static $segments = array(); 10 10 public static $rsegments = array(); 11 12 public static $query_string = ''; 11 13 12 14 public static $directory = FALSE; … … 57 59 self::$segments = substr(self::$segments, 0, -(strlen($suffix))); 58 60 } 61 62 // Destroy GET 63 $_GET = array(); 59 64 } 60 65 elseif (isset($_SERVER['PATH_INFO']) AND $_SERVER['PATH_INFO']) … … 228 233 } 229 234 230 if ( self::$controller != TRUE)235 if (empty(self::$controller)) 231 236 { 232 237 Kohana::show_404();
