//small fix on block contact

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16266 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vAugagneur
2012-07-06 15:11:25 +00:00
parent 099ad93161
commit 249808e175
+6
View File
@@ -48,6 +48,7 @@ class Blockcontact extends Module
&& Configuration::updateValue('blockcontact_telnumber', '')
&& Configuration::updateValue('blockcontact_email', '')
&& $this->registerHook('displayRightColumn')
&& $this->registerHook('displayLeftColumn')
&& $this->registerHook('displayHeader');
}
@@ -102,5 +103,10 @@ class Blockcontact extends Module
));
return $this->display(__FILE__, 'blockcontact.tpl');
}
public function hookDisplayRightColumn()
{
return $this->hookDisplayRightColumn();
}
}
?>