Changeset 1937 for trunk/application

Show
Ignore:
Timestamp:
02/05/2008 05:46:32 PM (11 months ago)
Author:
Shadowhand
Message:

Setting up application/config/config.php for 2.1 release:

  • Enabled XSS filtering by default
  • Added all official modules and a quick description
Files:
1 modified

Legend:

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

    r1758 r1937  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    2 /* 
     2/** 
    33 * Domain name, with the installation directory. Default: localhost/kohana/ 
    44 */ 
     
    2727 * the compression level (1-9) that you want to use, or FALSE to disable. 
    2828 * 
    29  * @note Do not enable this option if you are using output compression in php.ini! 
     29 * Do not enable this option if you are using output compression in php.ini! 
    3030 */ 
    3131$config['output_compression'] = FALSE; 
     
    3535 * option also accepts a string to specify a specific XSS filtering tool. 
    3636 */ 
    37 $config['global_xss_filtering'] = FALSE; 
     37$config['global_xss_filtering'] = TRUE; 
    3838 
    3939/** 
     
    6262$config['modules'] = array 
    6363( 
    64         // To enable the demo module; uncomment the following line 
    65         // 'modules/demo', 
    66         // To enable local API documentation at /kodoc/, uncomment the following line 
    67         // 'modules/kodoc', 
     64        // 'modules/auth',   // Authentication 
     65        // 'modules/forge',  // Form generation 
     66        // 'modules/kodoc',  // Self-generating documentation 
     67        // 'modules/media',  // Media caching and compression 
    6868); 
    6969