From: Brion Vibber Date: Tue, 8 Feb 2005 20:46:22 +0000 (+0000) Subject: Somebody forgot the table names *ahem* X-Git-Tag: 1.5.0alpha1~750 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/modifier.php?a=commitdiff_plain;h=b7d89cb7177c32440b802d9a3c6f505905c06454;p=lhc%2Fweb%2Fwiklou.git Somebody forgot the table names *ahem* --- 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() );