From: Cash Costello Date: Mon, 24 Oct 2011 02:12:21 +0000 (-0400) Subject: Fixes #4003 footer in modules is included by default X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5879ebf600db1609b0cd5112206fd1e34b722144;p=lorea%2Felgg.git Fixes #4003 footer in modules is included by default --- diff --git a/views/default/page/components/module.php b/views/default/page/components/module.php index f7b9da59c..b1198ee9a 100644 --- a/views/default/page/components/module.php +++ b/views/default/page/components/module.php @@ -42,6 +42,8 @@ if (isset($vars['footer'])) { if ($vars['footer']) { $footer = "
$footer
"; } +} else { + $footer = "
"; } $contents = $header . $body . $footer;