From: Chad Horohoe Date: Fri, 6 Feb 2009 19:52:35 +0000 (+0000) Subject: (bug 17190) User ID on prefs page shouldn't be delimited. X-Git-Tag: 1.31.0-rc.0~42999 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=b992c2d27d52676bc939e7a6663b36b81dcd172e;p=lhc%2Fweb%2Fwiklou.git (bug 17190) User ID on prefs page shouldn't be delimited. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index cbc81a4d0a..843e9cfca8 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 diff --git a/includes/specials/SpecialPreferences.php b/includes/specials/SpecialPreferences.php index 8f6aab39ba..b83beb830e 100644 --- a/includes/specials/SpecialPreferences.php +++ b/includes/specials/SpecialPreferences.php @@ -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 ) ),