Changeset 1937 for trunk/application
- Timestamp:
- 02/05/2008 05:46:32 PM (11 months ago)
- Files:
-
- 1 modified
-
trunk/application/config/config.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/config/config.php
r1758 r1937 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 /* 2 /** 3 3 * Domain name, with the installation directory. Default: localhost/kohana/ 4 4 */ … … 27 27 * the compression level (1-9) that you want to use, or FALSE to disable. 28 28 * 29 * @noteDo 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! 30 30 */ 31 31 $config['output_compression'] = FALSE; … … 35 35 * option also accepts a string to specify a specific XSS filtering tool. 36 36 */ 37 $config['global_xss_filtering'] = FALSE;37 $config['global_xss_filtering'] = TRUE; 38 38 39 39 /** … … 62 62 $config['modules'] = array 63 63 ( 64 // To enable the demo module; uncomment the following line65 // 'modules/ demo',66 // To enable local API documentation at /kodoc/, uncomment the following line67 // 'modules/ kodoc',64 // 'modules/auth', // Authentication 65 // 'modules/forge', // Form generation 66 // 'modules/kodoc', // Self-generating documentation 67 // 'modules/media', // Media caching and compression 68 68 ); 69 69
