From: Brion Vibber Date: Fri, 9 Apr 2004 10:38:03 +0000 (+0000) Subject: XHTMl fixes X-Git-Tag: 1.3.0beta1~528 X-Git-Url: http://git.heureux-cyclage.org/?a=commitdiff_plain;h=b0ca04bbbe4f8a58d575d18842689b6db2037a35;p=lhc%2Fweb%2Fwiklou.git XHTMl fixes --- 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 );