From 338efcad7f5aa02f6b19c0e79162d6a7efe0133b Mon Sep 17 00:00:00 2001 From: gRoussac Date: Wed, 9 Oct 2013 12:14:49 +0200 Subject: [PATCH] [-] CORE : $smarty->compile_check is not set to false, thanks @prestamodule --- config/smarty.config.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/smarty.config.inc.php b/config/smarty.config.inc.php index 392b42a58..b4b7b66aa 100644 --- a/config/smarty.config.inc.php +++ b/config/smarty.config.inc.php @@ -37,7 +37,7 @@ if (!Tools::getSafeModeStatus()) $smarty->setConfigDir(_PS_SMARTY_DIR_.'configs'); $smarty->caching = false; $smarty->force_compile = (Configuration::get('PS_SMARTY_FORCE_COMPILE') == _PS_SMARTY_FORCE_COMPILE_) ? true : false; -$smarty->compile_check = (Configuration::get('PS_SMARTY_FORCE_COMPILE') <= _PS_SMARTY_CHECK_COMPILE_) ? true : false; +$smarty->compile_check = (Configuration::get('PS_SMARTY_FORCE_COMPILE') >= _PS_SMARTY_CHECK_COMPILE_) ? true : false; // Production mode $smarty->debugging = false;