Changeset 2737
- Timestamp:
- 06/02/08 11:14:48 (3 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Router.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Router.php
r2629 r2737 14 14 protected static $routes = array(); 15 15 16 public static $current_uri = ''; 16 public static $current_uri = ''; 17 public static $query_string = ''; 18 public static $complete_uri = ''; 19 public static $url_suffix = ''; 20 17 21 public static $segments = array(); 18 22 public static $rsegments = array(); 19 20 public static $query_string = '';21 public static $url_suffix = '';22 23 23 24 public static $directory = FALSE; … … 64 65 // At this point segments, rsegments, and current URI are all the same 65 66 self::$segments = self::$rsegments = self::$current_uri = trim(self::$current_uri, '/'); 67 68 // Set the complete URI 69 self::$complete_uri = self::$query_string.self::$current_uri; 66 70 67 71 // Explode the segments by slashes
