From b13cb58eb41b96201f68a40b35e290adf275907c Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Wed, 8 Feb 2012 14:46:33 +0000 Subject: [PATCH] [-] BO : #PSTEST-680 - Fix translations problems with helpers templates [-] BO : #PSTEST-678 - Fix translations problems with helpers templates git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13134 b9a71923-0436-4b27-9f14-aed3839534dd --- config/smartyadmin.config.inc.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/config/smartyadmin.config.inc.php b/config/smartyadmin.config.inc.php index 28f910b2a..86326fef0 100644 --- a/config/smartyadmin.config.inc.php +++ b/config/smartyadmin.config.inc.php @@ -107,8 +107,12 @@ function smartyTranslate($params, &$smarty) { // note : this may be modified later - case '.': $class = 'index';break; - case 'helper' : $class = 'AdminTab';break; + case '.': + $class = 'index'; + break; + case 'helpers': + $class = 'AdminTab'; + break; default : { $parentClass = explode('/', $filename);