Changeset 1369 for trunk/index.php
- Timestamp:
- 12/02/2007 08:42:19 AM (12 months ago)
- Files:
-
- 1 modified
-
trunk/index.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r1333 r1369 12 12 13 13 /** 14 * Set the error reporting level. By default, Kohana will ignore E_NOTICE15 * messages. Unless you have a special need, E_ALL is a good level for16 * error reporting.17 */18 error_reporting(E_ALL);19 20 /**21 * Enable or disable error display. During development, it is very helpful22 * to display errors. However, errors can give away information about your23 * application. For greater security, it is recommended that you disable24 * the displaying of errors in production.25 */26 ini_set('display_errors', TRUE);27 28 /**29 14 * Kohana website application directory. This directory should contain your 30 15 * application configuration, controllers, models, views, and other resources. 16 * 17 * This path can be absolute or relative to this file. 31 18 */ 32 19 $kohana_application = 'application'; … … 35 22 * Kohana package files. This directory should contain the core/ directory, and 36 23 * the resources you included in your download of Kohana. 24 * 25 * This path can be absolute or relative to this file. 37 26 */ 38 27 $kohana_system = 'system'; 28 29 /** 30 * Set the error reporting level. Unless you have a special need, E_ALL is a 31 * good level for error reporting. 32 */ 33 error_reporting(E_ALL & ~E_STRICT); 34 35 /** 36 * Turning off display_errors will effectively disable Kohana error display 37 * and logging. You can turn off Kohana errors in application/config/config.php 38 */ 39 ini_set('display_errors', TRUE); 39 40 40 41 /** … … 46 47 47 48 // 48 // DO NOT EDIT BELOW THIS LINE, UNLESS YOU FULLY UNDERSTAND WHAT YOU ARE CHANGING.49 // DO NOT EDIT BELOW THIS LINE, UNLESS YOU FULLY UNDERSTAND THE IMPLICATIONS. 49 50 // ---------------------------------------------------------------------------- 50 51 // $Id$
