Show
Ignore:
Timestamp:
02/04/2008 10:13:16 AM (11 months ago)
Author:
PugFish
Message:

A load more comments converted.
Fixed escaping error in fr_FR i18n file.
Fixed wrong closing tag in disabled error view.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/Router.php

    r1850 r1911  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * Class: Router 
     3 * Router 
    44 * 
    5  * Kohana Source Code: 
    6  *  author    - Kohana Team 
    7  *  copyright - (c) 2007 Kohana Team 
    8  *  license   - <http://kohanaphp.com/license.html> 
     5 * $Id$ 
     6 * 
     7 * @package    Core 
     8 * @author     Kohana Team 
     9 * @copyright  (c) 2007-2008 Kohana Team 
     10 * @license    http://kohanaphp.com/license.html 
    911 */ 
    1012class Router_Core { 
     
    2527 
    2628        /** 
    27          * Method: setup 
    28          *  Router setup routine. Automatically called during Kohana setup process. 
     29         * Router setup routine. Automatically called during Kohana setup process. 
    2930         */ 
    3031        public static function setup() 
     
    178179 
    179180        /** 
    180          * Method: find_uri 
    181          *  Attempts to determine the current URI using CLI, GET, PATH_INFO, ORIG_PATH_INFO, or PHP_SELF. 
     181         * Attempts to determine the current URI using CLI, GET, PATH_INFO, ORIG_PATH_INFO, or PHP_SELF. 
    182182         */ 
    183183        public static function find_uri() 
     
    256256 
    257257        /** 
    258          * Method: filter_uri 
    259          *  Filter a string for allowed URI characters. 
     258         * Filter a string for allowed URI characters. 
    260259         * 
    261          * Parameters: 
    262          *  str - string to filter 
    263          * 
    264          * Returns: 
    265          *  Filtered string 
     260         * @param   string  string to filter 
     261         * @return  string 
    266262         */ 
    267263        public static function filter_uri($str)