From: Siebrand Mazeland Date: Mon, 8 Jun 2009 09:21:30 +0000 (+0000) Subject: Follow-up to r49492: Add forgotten $this->setHeaders(); in execute(). X-Git-Tag: 1.31.0-rc.0~41450 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=ffc7cfc8a4a3be992017b74b5634891298fd53bc;p=lhc%2Fweb%2Fwiklou.git Follow-up to r49492: Add forgotten $this->setHeaders(); in execute(). --- diff --git a/includes/specials/SpecialWhatlinkshere.php b/includes/specials/SpecialWhatlinkshere.php index 5671228e47..5e21c736ce 100644 --- a/includes/specials/SpecialWhatlinkshere.php +++ b/includes/specials/SpecialWhatlinkshere.php @@ -29,6 +29,8 @@ class SpecialWhatLinksHere extends SpecialPage { function execute( $par ) { global $wgOut, $wgRequest; + $this->setHeaders(); + $opts = new FormOptions(); $opts->add( 'target', '' );