Show
Ignore:
Timestamp:
10/04/2007 01:57:26 PM (14 months ago)
Author:
Shadowhand
Message:

Overhauled User_Agent almost completely.

Spit shine on the rest of it.

Files:
1 modified

Legend:

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

    r644 r647  
    11<?php defined('SYSPATH') or die('No direct access allowed.'); 
    2  
    3 $config['_default'] = 'user_guide'; 
     2/** 
     3 * Route Configuration 
     4 * ----------------------------------------------------------------------------- 
     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 * 
     8 * Supported shortcuts are: 
     9 * 
     10 *   :any - matches any non-blank string 
     11 *   :num - matches any number 
     12 * 
     13 * User Guide: http://kohanaphp.com/user_guide/en/libraries/database.html 
     14 * 
     15 */ 
     16$config = array 
     17( 
     18        '_default' => 'user_guide' 
     19);