From: Rob Church Date: Mon, 13 Mar 2006 17:17:20 +0000 (+0000) Subject: Fix stupid mistake that caused the page not to be cached with the rest of them. X-Git-Tag: 1.6.0~210 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=a79f9d308bf32f10bfb8e71f08a10670340fce38;p=lhc%2Fweb%2Fwiklou.git Fix stupid mistake that caused the page not to be cached with the rest of them. --- diff --git a/includes/SpecialListredirects.php b/includes/SpecialListredirects.php index a2483db6f1..804df551cf 100644 --- a/includes/SpecialListredirects.php +++ b/includes/SpecialListredirects.php @@ -18,14 +18,16 @@ require_once 'QueryPage.php'; class ListredirectsPage extends QueryPage { - function getName() { return( 'listredirects' ); } + function getName() { return( 'Listredirects' ); } function isExpensive() { return( true ); } function isSyndicated() { return( false ); } function sortDescending() { return( false ); } function getSQL() { $dbr =& wfGetDB( DB_SLAVE ); - return( 'SELECT page_title AS title, page_namespace AS namespace, page_namespace AS value FROM ' . $dbr->tableName( 'page' ) . ' WHERE page_is_redirect = 1' ); + $page = $dbr->tableName( 'page' ); + $sql = "SELECT 'Listredirects' AS type, page_title AS title, page_namespace AS namespace, 0 AS value FROM $page WHERE page_is_redirect = 1"; + return( $sql ); } function formatResult( $skin, $result ) {