From: Alexandre Emsenhuber Date: Fri, 27 Jan 2012 07:15:18 +0000 (+0000) Subject: * (bug 33762) QueryPage-based special pages no longer misses *-summary message X-Git-Tag: 1.31.0-rc.0~25069 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=b5c88474d5d3d965a7fa6eb280c5028950d00b3d;p=lhc%2Fweb%2Fwiklou.git * (bug 33762) QueryPage-based special pages no longer misses *-summary message --- 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() );