From b5c88474d5d3d965a7fa6eb280c5028950d00b3d Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 27 Jan 2012 07:15:18 +0000 Subject: [PATCH] * (bug 33762) QueryPage-based special pages no longer misses *-summary message --- RELEASE-NOTES-1.19 | 1 + includes/QueryPage.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/RELEASE-NOTES-1.19 b/RELEASE-NOTES-1.19 index 2e6e72ad60..732a994a87 100644 --- a/RELEASE-NOTES-1.19 +++ b/RELEASE-NOTES-1.19 @@ -238,6 +238,7 @@ production. * (bug 33880) $wgUsersNotifiedOnAllChanges should not send e-mail to user who made the edit. * (bug 33902) Decoding %2B with mw.Uri.decode results in ' ' instead of + +* (bug 33762) QueryPage-based special pages no longer misses *-summary message. === API changes in 1.19 === * Made action=edit less likely to return "unknownerror", by returning the actual error diff --git a/includes/QueryPage.php b/includes/QueryPage.php index 12321abcc8..8778120179 100644 --- a/includes/QueryPage.php +++ b/includes/QueryPage.php @@ -449,6 +449,8 @@ abstract class QueryPage extends SpecialPage { $dbr = wfGetDB( DB_SLAVE ); $this->setHeaders(); + $this->outputHeader(); + $out = $this->getOutput(); $out->setSyndicated( $this->isSyndicated() ); -- 2.20.1