Index: trunk/phase3/includes/specials/SpecialPreferences.php |
— | — | @@ -674,7 +674,7 @@ |
675 | 675 | |
676 | 676 | $userInformationHtml = |
677 | 677 | $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() ) ) . |
679 | 679 | |
680 | 680 | $this->tableRow( |
681 | 681 | wfMsgExt( 'prefs-memberingroups', array( 'parseinline' ), count( $userEffectiveGroupsArray ) ), |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -145,6 +145,7 @@ |
146 | 146 | * (bug 17231) Transcluding special pages on wikis using language conversion no |
147 | 147 | longer affects the page title |
148 | 148 | * (bug 6702) Default system messages updated/improved |
| 149 | +* (bug 17190) User ID on preference page no longer has delimeters |
149 | 150 | |
150 | 151 | == API changes in 1.15 == |
151 | 152 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |