Show
Ignore:
Timestamp:
01/04/2008 10:01:49 AM (12 months ago)
Author:
Shadowhand
Message:

Small cleanups:

  • Updated system/config file comments
  • Added Encrypt::instance()
Files:
1 modified

Legend:

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

    r1653 r1668  
    11<?php defined('SYSPATH') or die('No direct access allowed.'); 
    22/** 
     3 * @package  Core 
     4 * 
    35 * Supported Shortcuts: 
    46 *  :any - matches any non-blank string 
     
    79 
    810/** 
    9  * Permitted URI characters. 
     11 * Permitted URI characters. Note that "?", "#", and "=" are URL characters, and do 
     12 * not to be added here. 
    1013 */ 
    1114$config['_allowed'] = 'a-z 0-9~%.,:_-'; 
    1215 
    1316/** 
    14  * Default route when no URI segments are found. 
     17 * Default route to use when no URI segments are available. 
    1518 */ 
    1619$config['_default'] = 'welcome';