From a79f9d308bf32f10bfb8e71f08a10670340fce38 Mon Sep 17 00:00:00 2001 From: Rob Church Date: Mon, 13 Mar 2006 17:17:20 +0000 Subject: [PATCH] Fix stupid mistake that caused the page not to be cached with the rest of them. --- includes/SpecialListredirects.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 ) { -- 2.20.1