From b417c0f9008980b36b795333da82ad91fd7eb6f4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sun, 16 Oct 2005 02:29:30 +0000 Subject: [PATCH] * Also suppress the perfached notice on listoutput --- includes/QueryPage.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 54a32b9d6b..60bbd57ff4 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -263,7 +263,8 @@ class QueryPage { $sql = "SELECT qc_type as type, qc_namespace as namespace,qc_title as title, qc_value as value FROM $querycache WHERE qc_type='$type'"; - $wgOut->addWikiText( wfMsg( 'perfcached' ) ); + if ( ! $this->listoutput ) + $wgOut->addWikiText( wfMsg( 'perfcached' ) ); } $sql .= $this->getOrder(); -- 2.20.1