From: Ævar Arnfjörð Bjarmason Date: Sat, 29 Oct 2005 03:03:10 +0000 (+0000) Subject: * NS_USER => $row->namespace (it's going to be the same anyway) X-Git-Tag: 1.6.0~1277 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22suivi_revisions%22%29%20.%20%22?a=commitdiff_plain;h=598ef3c9a817fc5459e052728ef1937372178f07;p=lhc%2Fweb%2Fwiklou.git * NS_USER => $row->namespace (it's going to be the same anyway) --- diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index fc664e05a4..62bfb884cf 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -61,7 +61,7 @@ class ListUsersPage extends QueryPage { $batch = new LinkBatch; while ( $row = $db->fetchObject( $res ) ) { - $batch->addObj( Title::makeTitleSafe( NS_USER, $row->title ) ); + $batch->addObj( Title::makeTitleSafe( $row->namespace, $row->title ) ); } $batch->execute( $wgLinkCache );