Index: branches/wmf/1.17wmf1/extensions/CentralAuth/SpecialCentralAuth.php |
— | — | @@ -363,6 +363,13 @@ |
364 | 364 | |
365 | 365 | function listMergedWikiItem( $row ) { |
366 | 366 | global $wgLang; |
| 367 | + |
| 368 | + if ( $row === null ) { |
| 369 | + // https://bugzilla.wikimedia.org/show_bug.cgi?id=28767 |
| 370 | + // It seems sometimes local accounts aren't correctly created |
| 371 | + // Revisiting the wiki solves the issue |
| 372 | + return ''; |
| 373 | + } |
367 | 374 | return '<tr>' . |
368 | 375 | ( $this->mCanUnmerge ? '<td>' . $this->adminCheck( $row['wiki'] ) . '</td>' : '' ) . |
369 | 376 | '<td>' . $this->foreignUserLink( $row['wiki'] ) . '</td>' . |