Show
Ignore:
Timestamp:
10/18/2007 12:30:59 PM (14 months ago)
Author:
Shadowhand
Message:

Small changes to config:

  • Added config/locale.php
  • Moved core.timezone to locale.timezone
  • Moved core.locale to locale.language
  • Moved core.permitted_uri_chars to routes._allowed
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/config/routes.php

    r647 r842  
    33 * Route Configuration 
    44 * ----------------------------------------------------------------------------- 
    5  * Routes can be defined as literal matches, regular expressions, and shortcuts. 
    6  * The "_default" route is reserved for a blank URI string, eg: home page. 
    7  * 
    85 * Supported shortcuts are: 
    96 * 
     
    1310 * User Guide: http://kohanaphp.com/user_guide/en/libraries/database.html 
    1411 * 
     12 * @param string   _allowed   Permitted URI characters 
     13 * @param string   _default   Default route when no URI segments are found 
    1514 */ 
    1615$config = array 
    1716( 
     17        '_allowed' => 'a-z 0-9~%.:_-', 
    1818        '_default' => 'user_guide' 
    1919);