Changeset 609 for trunk/system/libraries/URI.php
- Timestamp:
- 09/28/2007 06:19:02 PM (14 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/URI.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/URI.php
r581 r609 2 2 3 3 class URI_Core extends Router { 4 5 public function __construct() 6 { 7 if ( ! empty($_GET)) 8 { 9 self::$query_string = '?'; 10 foreach($_GET as $key => $val) 11 { 12 self::$query_string .= $key.'='.rawurlencode($val); 13 } 14 } 15 } 4 16 5 17 /**
