From c709a2a183ed22a6bdb5bbf72003905f6567906a 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 --- 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);