From ffc7cfc8a4a3be992017b74b5634891298fd53bc Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 8 Jun 2009 09:21:30 +0000 Subject: [PATCH] Follow-up to r49492: Add forgotten $this->setHeaders(); in execute(). --- includes/specials/SpecialWhatlinkshere.php | 2 ++ 1 file changed, 2 insertions(+) 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', '' ); -- 2.20.1