Index: trunk/phase3/includes/SpecialListusers.php |
— | — | @@ -61,7 +61,7 @@ |
62 | 62 | |
63 | 63 | $batch = new LinkBatch; |
64 | 64 | while ( $row = $db->fetchObject( $res ) ) { |
65 | | - $batch->addObj( Title::makeTitleSafe( NS_USER, $row->title ) ); |
| 65 | + $batch->addObj( Title::makeTitleSafe( $row->namespace, $row->title ) ); |
66 | 66 | } |
67 | 67 | $batch->execute( $wgLinkCache ); |
68 | 68 | |