From: Raimond Spekking Date: Wed, 7 Jan 2009 16:40:44 +0000 (+0000) Subject: Remove horizontal line bettwen input form and output. X-Git-Tag: 1.31.0-rc.0~43516 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=9c8ab4e8546b6d439ddf0cc1d2a04c597ca33b70;p=lhc%2Fweb%2Fwiklou.git Remove horizontal line bettwen input form and output. Looks odd to me since we have the nice fieldsets. --- diff --git a/includes/specials/SpecialAllpages.php b/includes/specials/SpecialAllpages.php index bf68dfa6fe..5da23f202d 100644 --- a/includes/specials/SpecialAllpages.php +++ b/includes/specials/SpecialAllpages.php @@ -217,9 +217,9 @@ class SpecialAllpages extends IncludableSpecialPage { $out2 .= '' . $nsForm; $out2 .= '' . $wgUser->getSkin()->makeKnownLinkObj( $this->getTitle(), wfMsgHtml ( 'allpages' ) ); - $out2 .= "
"; + $out2 .= ""; } else { - $out2 = $nsForm . '
'; + $out2 = $nsForm; } } $wgOut->addHTML( $out2 . $out ); @@ -394,7 +394,7 @@ class SpecialAllpages extends IncludableSpecialPage { wfMsgHtml( 'nextpage', htmlspecialchars( $t->getText() ) ), $q ); $out2 .= ' | ' . $nextLink; } - $out2 .= "
"; + $out2 .= ""; } $wgOut->addHTML( $out2 . $out ); diff --git a/includes/specials/SpecialPrefixindex.php b/includes/specials/SpecialPrefixindex.php index ea0c113591..1572e3fea3 100644 --- a/includes/specials/SpecialPrefixindex.php +++ b/includes/specials/SpecialPrefixindex.php @@ -181,7 +181,7 @@ class SpecialPrefixindex extends SpecialAllpages { "from=" . wfUrlEncode( $s->page_title ) . "&prefix=" . wfUrlEncode( $prefix ) . $namespaceparam ); } - $out2 .= "
"; + $out2 .= ""; } $wgOut->addHTML( $out2 . $out );