From b3d63dba77677d253fa18930038ab13fa76c2ec9 Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Mon, 24 Sep 2012 10:24:16 +0000 Subject: [PATCH] [-] BO : fixed bug #PSCFV-4247 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17496 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 24a3d32c4..c923ec5fa 100644 --- a/classes/module/Module.php +++ b/classes/module/Module.php @@ -995,7 +995,7 @@ abstract class ModuleCore $item->$k = (string)$v; $item->displayName = stripslashes(Translate::getModuleTranslation((string)$xml_module->name, Module::configXmlStringFormat($xml_module->displayName), (string)$xml_module->name)); $item->description = stripslashes(Translate::getModuleTranslation((string)$xml_module->name, Module::configXmlStringFormat($xml_module->description), (string)$xml_module->name)); - $item->author = Translate::getModuleTranslation((string)$xml_module->name, Module::configXmlStringFormat($xml_module->author), (string)$xml_module->name); + $item->author = stripslashes(Translate::getModuleTranslation((string)$xml_module->name, Module::configXmlStringFormat($xml_module->author), (string)$xml_module->name)); if (isset($xml_module->confirmUninstall)) $item->confirmUninstall = Translate::getModuleTranslation((string)$xml_module->name, Module::configXmlStringFormat($xml_module->confirmUninstall), (string)$xml_module->name);