From 8b4543298f9e3af557c3020aec6e07dac12c9ddf Mon Sep 17 00:00:00 2001 From: puntable Date: Fri, 11 Sep 2015 11:36:21 +0200 Subject: [PATCH] Update Data.php Added .class to login message to allow CSS modification --- app/code/community/Sitewards/B2BProfessional/Helper/Data.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/code/community/Sitewards/B2BProfessional/Helper/Data.php b/app/code/community/Sitewards/B2BProfessional/Helper/Data.php index f316cb0..3e9dbdb 100644 --- a/app/code/community/Sitewards/B2BProfessional/Helper/Data.php +++ b/app/code/community/Sitewards/B2BProfessional/Helper/Data.php @@ -89,7 +89,8 @@ public function isExtensionActive() */ public function getLoginMessage() { - return $this->getStoreConfig(self::CONFIG_EXTENSION_LOGIN_MESSAGE, 'sLoginMessage'); + $loginMessage = '' . $this->getStoreConfig(self::CONFIG_EXTENSION_LOGIN_MESSAGE, 'sLoginMessage') . ''; + return $loginMessage; } /** @@ -275,4 +276,4 @@ protected function getAddToCartBlockLayoutNames() { return $this->aAddToCartBlockLayoutNames; } -} \ No newline at end of file +}