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