Remove horizontal line bettwen input form and output.
authorRaimond Spekking <raymond@users.mediawiki.org>
Wed, 7 Jan 2009 16:40:44 +0000 (16:40 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Wed, 7 Jan 2009 16:40:44 +0000 (16:40 +0000)
Looks odd to me since we have the nice fieldsets.

includes/specials/SpecialAllpages.php
includes/specials/SpecialPrefixindex.php

index bf68dfa..5da23f2 100644 (file)
@@ -217,9 +217,9 @@ class SpecialAllpages extends IncludableSpecialPage {
                                $out2 .= '<tr valign="top"><td>' . $nsForm;
                                $out2 .= '</td><td align="' . $align . '" style="font-size: smaller; margin-bottom: 1em;">' .
                                        $wgUser->getSkin()->makeKnownLinkObj( $this->getTitle(), wfMsgHtml ( 'allpages' ) );
-                               $out2 .= "</td></tr></table><hr />";
+                               $out2 .= "</td></tr></table>";
                        } else {
-                               $out2 = $nsForm . '<hr />';
+                               $out2 = $nsForm;
                        }
                }
                $wgOut->addHTML( $out2 . $out );
@@ -394,7 +394,7 @@ class SpecialAllpages extends IncludableSpecialPage {
                                        wfMsgHtml( 'nextpage', htmlspecialchars( $t->getText() ) ), $q );
                                $out2 .= ' | ' . $nextLink;
                        }
-                       $out2 .= "</td></tr></table><hr />";
+                       $out2 .= "</td></tr></table>";
                }
 
                $wgOut->addHTML( $out2 . $out );
index ea0c113..1572e3f 100644 (file)
@@ -181,7 +181,7 @@ class SpecialPrefixindex extends SpecialAllpages {
                                        "from=" . wfUrlEncode( $s->page_title ) .
                                        "&prefix=" . wfUrlEncode( $prefix ) . $namespaceparam );
                        }
-                       $out2 .= "</td></tr></table><hr />";
+                       $out2 .= "</td></tr></table>";
                }
 
                $wgOut->addHTML( $out2 . $out );