From ede98d1fe2b06678af5b1629d7185d5fee6f7533 Mon Sep 17 00:00:00 2001 From: Rouslan Placella Date: Sun, 17 Jun 2012 17:39:37 +0100 Subject: [PATCH] Close page tags properly --- libraries/Footer.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/Footer.class.php b/libraries/Footer.class.php index 143c903db9..2cb309053f 100644 --- a/libraries/Footer.class.php +++ b/libraries/Footer.class.php @@ -326,7 +326,8 @@ class PMA_Footer $retval .= ob_get_contents(); ob_end_clean(); } - } else if (! $this->_isAjax) { + } + if (! $this->_isAjax) { $retval .= ""; } }