Revert r39546 "(bug 14187) In Special:Userlogin the buttons "Log in" and "E-mail...
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 19 Aug 2008 17:24:23 +0000 (17:24 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 19 Aug 2008 17:24:23 +0000 (17:24 +0000)
There's no need to add classes when they already have IDs...

RELEASE-NOTES
includes/templates/Userlogin.php

index bc8d005..3ccb290 100644 (file)
@@ -88,8 +88,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   Show/Hide logged in users, Show/Hide anonymous, Invert namespace selection
 * Added hook 'UserrightsChangeableGroups' to allow modification of what
   groups may be added or removed via the Special:UserRights interface.
-* (bug 14187) In Special:Userlogin the buttons "Log in" and "E-mail new
-  password" now have classes "mw-loginbutton" and "mw-mailmypasswordbutton".
 * HTML entities like &nbsp; now work (are not escaped) in edit summaries.
 * (bug 13815) In the comment for page moves, use the colon-separator message
   instead of a hardcoded colon.
index bc2ae60..02397ea 100644 (file)
@@ -79,7 +79,7 @@ class UserloginTemplate extends QuickTemplate {
                <tr>
                        <td></td>
                        <td class="mw-submit">
-                               <input type='submit' class="mw-loginbutton" name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="<?php $this->msg('login') ?>" />&nbsp;<?php if( $this->data['useemail'] && $this->data['canreset']) { ?><input type='submit' class="mw-mailmypasswordbutton" name="wpMailmypassword" id="wpMailmypassword"
+                               <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="<?php $this->msg('login') ?>" />&nbsp;<?php if( $this->data['useemail'] && $this->data['canreset']) { ?><input type='submit' name="wpMailmypassword" id="wpMailmypassword"
                                        tabindex="6"
                                                                        value="<?php $this->msg('mailmypassword') ?>" />
                                <?php } ?>