From b7d89cb7177c32440b802d9a3c6f505905c06454 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 8 Feb 2005 20:46:22 +0000 Subject: [PATCH] Somebody forgot the table names *ahem* --- includes/SpecialRecentchangeslinked.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/SpecialRecentchangeslinked.php b/includes/SpecialRecentchangeslinked.php index b90b7b6705..343c3e95f4 100644 --- a/includes/SpecialRecentchangeslinked.php +++ b/includes/SpecialRecentchangeslinked.php @@ -65,6 +65,8 @@ function wfSpecialRecentchangeslinked( $par = NULL ) { $cmq = 'AND rev_minor_edit=0'; } else { $cmq = ''; } + extract( $dbr->tableNames( 'categorylinks', 'links', 'revision', 'page' ) ); + // If target is a Category, use categorylinks and invert from and to if( $nt->getNamespace() == NS_CATEGORY ) { $catkey = $dbr->addQuotes( $nt->getDBKey() ); -- 2.20.1