// Fix bug with bad parameter format send to getModuletranslation

This commit is contained in:
mDeflotte
2012-06-12 13:51:37 +00:00
parent cf13764030
commit 62af7d1ead
+1 -1
View File
@@ -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;