Commit 3adfe640 authored by Taylor Otwell's avatar Taylor Otwell

Turned off display_errors runtime directive.

parent 4b25d9e4
......@@ -35,9 +35,11 @@ require SYS_PATH.'arr'.EXT;
spl_autoload_register(require SYS_PATH.'loader'.EXT);
// --------------------------------------------------------------
// Set the error reporting level.
// Set the error reporting and display levels.
// --------------------------------------------------------------
error_reporting((System\Config::get('error.detail')) ? E_ALL | E_STRICT : 0);
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 'Off');
// --------------------------------------------------------------
// Register the error handlers.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment