From 249808e17538c4fcf180c54f2003da8d2e41e167 Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Fri, 6 Jul 2012 15:11:25 +0000 Subject: [PATCH] //small fix on block contact git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16266 b9a71923-0436-4b27-9f14-aed3839534dd --- modules/blockcontact/blockcontact.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/blockcontact/blockcontact.php b/modules/blockcontact/blockcontact.php index 1d704d77b..59be0f4a4 100644 --- a/modules/blockcontact/blockcontact.php +++ b/modules/blockcontact/blockcontact.php @@ -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(); + } } ?>