Index: trunk/phase3/includes/specials/SpecialUnblock.php |
— | — | @@ -49,6 +49,9 @@ |
50 | 50 | list( $this->target, $this->type ) = SpecialBlock::getTargetAndType( $par, $this->getRequest() ); |
51 | 51 | $this->block = Block::newFromTarget( $this->target ); |
52 | 52 | |
| 53 | + $this->setHeaders(); |
| 54 | + $this->outputHeader(); |
| 55 | + |
53 | 56 | $out = $this->getOutput(); |
54 | 57 | $out->setPageTitle( wfMsg( 'unblockip' ) ); |
55 | 58 | $out->addModules( 'mediawiki.special' ); |
Index: trunk/phase3/includes/specials/SpecialEditWatchlist.php |
— | — | @@ -32,6 +32,8 @@ |
33 | 33 | throw new ReadOnlyError; |
34 | 34 | } |
35 | 35 | |
| 36 | + $this->setHeaders(); |
| 37 | + |
36 | 38 | $out = $this->getOutput(); |
37 | 39 | |
38 | 40 | # Anons don't get a watchlist |
— | — | @@ -47,6 +49,8 @@ |
48 | 50 | return; |
49 | 51 | } |
50 | 52 | |
| 53 | + $this->outputHeader(); |
| 54 | + |
51 | 55 | $sub = wfMsgExt( |
52 | 56 | 'watchlistfor2', |
53 | 57 | array( 'parseinline', 'replaceafter' ), |
Index: trunk/phase3/includes/specials/SpecialBlock.php |
— | — | @@ -87,6 +87,9 @@ |
88 | 88 | throw new ErrorPageError( 'badaccess', $status ); |
89 | 89 | } |
90 | 90 | |
| 91 | + $this->setHeaders(); |
| 92 | + $this->outputHeader(); |
| 93 | + |
91 | 94 | $out = $this->getOutput(); |
92 | 95 | $out->setPageTitle( wfMsg( 'blockip-title' ) ); |
93 | 96 | $out->addModules( 'mediawiki.special', 'mediawiki.special.block' ); |
Index: trunk/phase3/includes/specials/SpecialTags.php |
— | — | @@ -36,6 +36,9 @@ |
37 | 37 | } |
38 | 38 | |
39 | 39 | function execute( $par ) { |
| 40 | + $this->setHeaders(); |
| 41 | + $this->outputHeader(); |
| 42 | + |
40 | 43 | $out = $this->getOutput(); |
41 | 44 | $out->setPageTitle( wfMsg( 'tags-title' ) ); |
42 | 45 | $out->wrapWikiMsg( "<div class='mw-tags-intro'>\n$1\n</div>", 'tags-intro' ); |