(bug 17190) User ID on prefs page shouldn't be delimited.
authorChad Horohoe <demon@users.mediawiki.org>
Fri, 6 Feb 2009 19:52:35 +0000 (19:52 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Fri, 6 Feb 2009 19:52:35 +0000 (19:52 +0000)
RELEASE-NOTES
includes/specials/SpecialPreferences.php

index cbc81a4..843e9cf 100644 (file)
@@ -145,6 +145,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 17231) Transcluding special pages on wikis using language conversion no
   longer affects the page title
 * (bug 6702) Default system messages updated/improved
+* (bug 17190) User ID on preference page no longer has delimeters
 
 == API changes in 1.15 ==
 * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions
index 8f6aab3..b83beb8 100644 (file)
@@ -674,7 +674,7 @@ class PreferencesForm {
 
                $userInformationHtml =
                        $this->tableRow( wfMsgHtml( 'username' ), htmlspecialchars( $wgUser->getName() ) ) .
-                       $this->tableRow( wfMsgHtml( 'uid' ), $wgLang->formatNum( htmlspecialchars( $wgUser->getId() ) ) ).
+                       $this->tableRow( wfMsgHtml( 'uid' ), htmlspecialchars( $wgUser->getId() ) ) .
 
                        $this->tableRow(
                                wfMsgExt( 'prefs-memberingroups', array( 'parseinline' ), count( $userEffectiveGroupsArray ) ),