From 6b011418a22c7974a0a4c56351caef20dcfa5020 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 30 Nov 2009 17:17:16 +0000 Subject: [PATCH] Fix for fix --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 9e185ab1b5..14630ab3b4 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -3972,7 +3972,7 @@ function addPageHeaderFooter () { // Add them all together. This is maybe to simple foreach (array('page_header', 'output', 'page_footer') as $pagePart) { // Add page part if set - if (isset($GLOBALS[$pagePart]])) $OUT .= $GLOBALS[$pagePart]; + if (isset($GLOBALS[$pagePart])) $OUT .= $GLOBALS[$pagePart]; } // END - foreach // Transfer $OUT to 'output' -- 2.39.2