well-formedness fixes
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 6 Feb 2005 14:20:47 +0000 (14:20 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 6 Feb 2005 14:20:47 +0000 (14:20 +0000)
includes/SpecialContributions.php

index e0105ed..2467158 100644 (file)
@@ -149,7 +149,7 @@ function wfSpecialContributions( $par = '' ) {
                $wgOut->addHTML( wfMsg ( 'val_user_validations', $val ) );
        }
 
-       $wgOut->addHTML( "<br />{$sl} ($shm)</p>\n");
+       $wgOut->addHTML( "<br />{$sl} ($shm)\n");
 }
 
 
@@ -259,7 +259,7 @@ function ucDaysLink( $lim, $d ) {
 function namespaceForm ( $target, $hideminor, $namespace ) {
        global $wgContLang, $wgScript;
 
-       $namespaceselect = '<form><select name="namespace">';
+       $namespaceselect = '<select name="namespace">';
        $namespaceselect .= '<option value="" '.(is_null($namespace) ? ' selected="selected"' : '').'>'.wfMsg( 'all' ).'</option>';
        $arr = $wgContLang->getNamespaces();
        foreach( array_keys( $arr ) as $i ) {