From 1f6dceea85a0fb798c6fdc721185a0c313aa3ba0 Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Tue, 12 Jun 2012 13:51:37 +0000 Subject: [PATCH] // Fix bug with bad parameter format send to getModuletranslation git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15992 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/module/Module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/module/Module.php b/classes/module/Module.php index 7564401bc..f92739506 100644 --- a/classes/module/Module.php +++ b/classes/module/Module.php @@ -987,7 +987,7 @@ abstract class ModuleCore $item->author = Translate::getModuleTranslation((string)$xml_module->name, Module::configXmlStringFormat($xml_module->author), (string)$xml_module->name); if (isset($xml_module->confirmUninstall)) - $item->confirmUninstall = Translate::getModuleTranslation($xml_module->name, Module::configXmlStringFormat($xml_module->confirmUninstall), (string)$xml_module->name); + $item->confirmUninstall = Translate::getModuleTranslation((string)$xml_module->name, Module::configXmlStringFormat($xml_module->confirmUninstall), (string)$xml_module->name); $item->active = 0;