From cd4b3995beecb75019e4505a4d2cd82fd1615dca Mon Sep 17 00:00:00 2001 From: rMalie Date: Thu, 22 Dec 2011 10:28:56 +0000 Subject: [PATCH] [-] MO: Fix displayHeader hook in homeFeatured --- modules/homefeatured/homefeatured.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/homefeatured/homefeatured.php b/modules/homefeatured/homefeatured.php index ac63cd014..44ad9c3ff 100644 --- a/modules/homefeatured/homefeatured.php +++ b/modules/homefeatured/homefeatured.php @@ -49,7 +49,7 @@ class HomeFeatured extends Module function install() { - if (!Configuration::updateValue('HOME_FEATURED_NBR', 8) OR !parent::install() OR !$this->registerHook('home')) + if (!Configuration::updateValue('HOME_FEATURED_NBR', 8) || !parent::install() || !$this->registerHook('home') || !$this->registerHook('displayHeader')) return false; return true; }