From b992c2d27d52676bc939e7a6663b36b81dcd172e Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Fri, 6 Feb 2009 19:52:35 +0000 Subject: [PATCH] (bug 17190) User ID on prefs page shouldn't be delimited. --- RELEASE-NOTES | 1 + includes/specials/SpecialPreferences.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 ) ), -- 2.20.1