* Form indentation
authorAntoine Musso <hashar@users.mediawiki.org>
Tue, 11 Jul 2006 17:38:12 +0000 (17:38 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Tue, 11 Jul 2006 17:38:12 +0000 (17:38 +0000)
* Remove the 'namespace' label, looks useless

includes/SpecialWatchlist.php

index d96bb00..e02250f 100644 (file)
@@ -343,14 +343,12 @@ function wfSpecialWatchlist( $par ) {
        $wgOut->addHTML( implode( ' | ', $links ) );
 
        # Form for namespace filtering
-       $wgOut->addHTML(
+       $wgOut->addHTML( "\n" .
                wfOpenElement( 'form', array(
                                'method' => 'post',
                                'action' => $thisTitle->getLocalURL(),
                        ) ) .
-               wfLabel( 
-                       wfMsgExt( 'namespace', array( 'parseinline') ),
-                       'namespace' ) .
+               wfMsgExt( 'namespace', array( 'parseinline') ) .
                HTMLnamespaceselector( $nameSpace, '' ) . "\n" .
                ( $hideOwn ? wfHidden('hideown', 1)."\n" : '' ) .
                ( $hideBots ? wfHidden('hidebots', 1)."\n" : '' ) .