// display_errors and sql debug is automatically set to on when dev mode is activated

This commit is contained in:
rGaillard
2012-10-29 11:08:19 +00:00
parent c3bbcda805
commit f2f4e7defb
2 changed files with 12 additions and 4 deletions
+12 -3
View File
@@ -26,8 +26,17 @@
*/
/* Debug only */
@ini_set('display_errors', 'on');
define('_PS_DEBUG_SQL_', true);
define('_PS_MODE_DEV_', true);
if (_PS_MODE_DEV_)
{
@ini_set('display_errors', 'on');
define('_PS_DEBUG_SQL_', true);
}
else
{
@ini_set('display_errors', 'off');
define('_PS_DEBUG_SQL_', false);
}
$start_time = microtime(true);
@@ -184,4 +193,4 @@ define('_PS_OS_WS_PAYMENT_', Configuration::get('PS_OS_WS_PAYMENT'));
/* Get smarty */
require_once(dirname(__FILE__).'/smarty.config.inc.php');
Context::getContext()->smarty = $smarty;
Context::getContext()->smarty = $smarty;
-1
View File
@@ -25,7 +25,6 @@
* International Registered Trademark & Property of PrestaShop SA
*/
define('_PS_MODE_DEV_', true);
define('_PS_DEBUG_PROFILING_', false);
define('_PS_MODE_DEMO_', false);