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/upload.php

    r644 r647  
    11<?php defined('SYSPATH') or die('No direct access allowed.'); 
    2  
     2/** 
     3 * Session Configuration 
     4 * ---------------------------------------------------------------------------- 
     5 * 
     6 * User Guide: http://kohanaphp.com/user_guide/en/libraries/validation.html 
     7 * 
     8 * @param  string  upload_directory - Relative to your index file 
     9 * @param  string  remove_space     - Remove spaces from filenames 
     10 * 
     11 */ 
    312$config = array 
    413( 
    5         'upload_directory' => '@up', 
     14        'upload_directory' => '@upload', 
    615        'remove_spaces'    => TRUE 
    716);