Changeset 1736

Show
Ignore:
Timestamp:
01/20/2008 09:37:56 AM (12 months ago)
Author:
Shadowhand
Message:

Added the memcache Cache driver, fixes #313.

Location:
trunk/system
Files:
2 added
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/helpers/arr.php

    r1710 r1736  
    33 * Array helper class. 
    44 * 
    5  * $Id:$ 
     5 * $Id$ 
    66 * 
    77 * @package    Core 
  • trunk/system/libraries/Controller.php

    r1522 r1736  
    99 */ 
    1010class Controller_Core extends Kohana { 
     11 
     12        // Always loaded libraries 
     13        public $load; 
     14        public $uri; 
     15        public $input; 
    1116 
    1217        /** 
  • trunk/system/libraries/Router.php

    r1716 r1736  
    239239                { 
    240240                        // 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); 
    242242                } 
    243243