From b0ca04bbbe4f8a58d575d18842689b6db2037a35 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 9 Apr 2004 10:38:03 +0000 Subject: [PATCH] XHTMl fixes --- includes/EditPage.php | 2 +- includes/Skin.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index 999c65da4b..6fe2392493 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -225,7 +225,7 @@ class EditPage { $sectitle=preg_match("/^=+(.*?)=+/mi", $this->textbox1, $matches); - if( !empty( $matches[1] ) { + if( !empty( $matches[1] ) ) { $this->summary = "/* ". trim($matches[1])." */ "; } } diff --git a/includes/Skin.php b/includes/Skin.php index d95550b43c..63229ebf1f 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -321,7 +321,7 @@ class Skin { if($wgLang->isRTL()) $left = !$left; if ( !$shove ) { - $s .= "\n" . + $s .= "\n" . $this->logoText() . ""; } elseif( $left ) { $s .= $this->getQuickbarCompensator( $rows ); -- 2.20.1