[-] 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
This commit is contained in:
mDeflotte
2012-02-08 14:46:33 +00:00
parent 4a4a4a79e5
commit b13cb58eb4
+6 -2
View File
@@ -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);