Changeset 1736
- Timestamp:
- 01/20/2008 09:37:56 AM (12 months ago)
- Location:
- trunk/system
- Files:
-
- 2 added
- 3 modified
-
config/cache_memcache.php (added)
-
helpers/arr.php (modified) (1 diff)
-
libraries/Controller.php (modified) (1 diff)
-
libraries/Router.php (modified) (1 diff)
-
libraries/drivers/Cache_Memcache.php (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/helpers/arr.php
r1710 r1736 3 3 * Array helper class. 4 4 * 5 * $Id :$5 * $Id$ 6 6 * 7 7 * @package Core -
trunk/system/libraries/Controller.php
r1522 r1736 9 9 */ 10 10 class Controller_Core extends Kohana { 11 12 // Always loaded libraries 13 public $load; 14 public $uri; 15 public $input; 11 16 12 17 /** -
trunk/system/libraries/Router.php
r1716 r1736 239 239 { 240 240 // Remove the front controller from the current uri 241 self::$current_uri = preg_replace('!.+?'.preg_quote($fc ).'(.*)!', '$1', self::$current_uri);241 self::$current_uri = preg_replace('!.+?'.preg_quote($fc, '!').'(.*)!', '$1', self::$current_uri); 242 242 } 243 243
