From b20032a8b20119df18cf6ae1a003ad289280890e Mon Sep 17 00:00:00 2001 From: Alexander Menk Date: Mon, 5 Nov 2012 13:05:56 +0100 Subject: [PATCH] Always enabled display errors in developer mode --- app/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bootstrap.php b/app/bootstrap.php index 4ebb9d3cfba5d..be0e234e08b8a 100644 --- a/app/bootstrap.php +++ b/app/bootstrap.php @@ -63,7 +63,6 @@ * Environment initialization */ error_reporting(E_ALL | E_STRICT); -#ini_set('display_errors', 1); umask(0); /** @@ -75,6 +74,7 @@ if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) { Mage::setIsDeveloperMode(true); + ini_set('display_errors', 1); } Mage::register('original_include_path', get_include_path());