r46935 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r46934‎ | r46935 | r46936 >
Date:19:52, 6 February 2009
Author:demon
Status:ok
Tags:
Comment:
(bug 17190) User ID on prefs page shouldn't be delimited.
Modified paths:
  • /trunk/phase3/RELEASE-NOTES (modified) (history)
  • /trunk/phase3/includes/specials/SpecialPreferences.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/specials/SpecialPreferences.php
@@ -674,7 +674,7 @@
675675
676676 $userInformationHtml =
677677 $this->tableRow( wfMsgHtml( 'username' ), htmlspecialchars( $wgUser->getName() ) ) .
678 - $this->tableRow( wfMsgHtml( 'uid' ), $wgLang->formatNum( htmlspecialchars( $wgUser->getId() ) ) ).
 678+ $this->tableRow( wfMsgHtml( 'uid' ), htmlspecialchars( $wgUser->getId() ) ) .
679679
680680 $this->tableRow(
681681 wfMsgExt( 'prefs-memberingroups', array( 'parseinline' ), count( $userEffectiveGroupsArray ) ),
Index: trunk/phase3/RELEASE-NOTES
@@ -145,6 +145,7 @@
146146 * (bug 17231) Transcluding special pages on wikis using language conversion no
147147 longer affects the page title
148148 * (bug 6702) Default system messages updated/improved
 149+* (bug 17190) User ID on preference page no longer has delimeters
149150
150151 == API changes in 1.15 ==
151152 * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions

Status & tagging log