git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14591 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fBrignoli
2012-04-11 16:03:57 +00:00
parent 73175f1191
commit ff98873fb5
3 changed files with 11 additions and 9 deletions
+2 -1
View File
@@ -42,7 +42,7 @@ function smartyTranslate($params, &$smarty)
// If the template is part of a module
if (!empty($params['mod']))
return Translate::getModuleTranslation($params['mod'], $params['s'], Tools::substr(basename($filename), 0, -4));
return Translate::getModuleTranslation($params['mod'], $params['s'], basename($filename, '.tpl'));
// If the tpl is at the root of the template folder
if (dirname($filename) == '.')
@@ -67,3 +67,4 @@ function smartyTranslate($params, &$smarty)
return Translate::getAdminTranslation($params['s'], $class, $addslashes, $htmlentities, $sprintf);
}