(bug 14187) In Special:Userlogin the buttons "Log in" and "E-mail new password" now...
authorSiebrand Mazeland <siebrand@users.mediawiki.org>
Sun, 17 Aug 2008 19:25:19 +0000 (19:25 +0000)
committerSiebrand Mazeland <siebrand@users.mediawiki.org>
Sun, 17 Aug 2008 19:25:19 +0000 (19:25 +0000)
RELEASE-NOTES
includes/templates/Userlogin.php

index c8ade86..d67e7de 100644 (file)
@@ -90,6 +90,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   groups may be added or removed via the Special:UserRights interface.
 * (bug 14468) Lines in classic RecentChanges and Watchlist have alternating
   background colours based on classes "odd" and "even".
+* (bug 14187) In Special:Userlogin the buttons "Log in" and "E-mail new
+  password" now have classes "mw-loginbutton" and "mw-mailmypasswordbutton".
 
 === Bug fixes in 1.14 ===
 
index 02397ea..bc2ae60 100644 (file)
@@ -79,7 +79,7 @@ class UserloginTemplate extends QuickTemplate {
                <tr>
                        <td></td>
                        <td class="mw-submit">
-                               <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"
+                               <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"
                                        tabindex="6"
                                                                        value="<?php $this->msg('mailmypassword') ?>" />
                                <?php } ?>