Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -238,6 +238,7 @@ |
239 | 239 | * (bug 33880) $wgUsersNotifiedOnAllChanges should not send e-mail to user who made |
240 | 240 | the edit. |
241 | 241 | * (bug 33902) Decoding %2B with mw.Uri.decode results in ' ' instead of + |
| 242 | +* (bug 33762) QueryPage-based special pages no longer misses *-summary message. |
242 | 243 | |
243 | 244 | === API changes in 1.19 === |
244 | 245 | * Made action=edit less likely to return "unknownerror", by returning the actual error |
Index: trunk/phase3/includes/QueryPage.php |
— | — | @@ -449,6 +449,8 @@ |
450 | 450 | $dbr = wfGetDB( DB_SLAVE ); |
451 | 451 | |
452 | 452 | $this->setHeaders(); |
| 453 | + $this->outputHeader(); |
| 454 | + |
453 | 455 | $out = $this->getOutput(); |
454 | 456 | $out->setSyndicated( $this->isSyndicated() ); |
455 | 457 | |