diff options
Diffstat (limited to 'includes/SpecialUncategorizedimages.php')
-rw-r--r-- | includes/SpecialUncategorizedimages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SpecialUncategorizedimages.php b/includes/SpecialUncategorizedimages.php index 38156976..1daba8ed 100644 --- a/includes/SpecialUncategorizedimages.php +++ b/includes/SpecialUncategorizedimages.php @@ -28,7 +28,7 @@ class UncategorizedImagesPage extends QueryPage { function getSQL() { $dbr =& wfGetDB( DB_SLAVE ); - extract( $dbr->tableNames( 'page', 'categorylinks' ) ); + list( $page, $categorylinks ) = $dbr->tableNamesN( 'page', 'categorylinks' ); $ns = NS_IMAGE; return "SELECT 'Uncategorizedimages' AS type, page_namespace AS namespace, |