Index: trunk/phase3/includes/specials/SpecialListusers.php |
— | — | @@ -120,6 +120,9 @@ |
121 | 121 | function formatRow( $row ) { |
122 | 122 | global $wgLang; |
123 | 123 | |
| 124 | + if ($row->user_id == 0) #Bug 16487 |
| 125 | + return ''; |
| 126 | + |
124 | 127 | $userPage = Title::makeTitle( NS_USER, $row->user_name ); |
125 | 128 | $name = $this->getSkin()->link( $userPage, htmlspecialchars( $userPage->getText() ) ); |
126 | 129 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -121,6 +121,8 @@ |
122 | 122 | * (bug 23080) New usernames now limited to 235 bytes so that custom skin files |
123 | 123 | work. |
124 | 124 | * (bug 23075) Correct MediaTransformError default width in gallery. |
| 125 | +* (bug 16487) The Anonymous user account used on Postgres is no longer |
| 126 | + displayed on Special:Listusers. |
125 | 127 | |
126 | 128 | === API changes in 1.17 === |
127 | 129 | * (bug 22738) Allow filtering by action type on query=logevent |