Merge fixes to ?preload= from /branches/conrad/ (cf. bug 5210, r62864, r62035)
[lhc/web/wiklou.git] / includes / specials / SpecialBlankpage.php
1 <?php
2 /**
3 * Special page designed for basic benchmarking of
4 * MediaWiki since it doesn't really do much.
5 *
6 * @ingroup SpecialPage
7 */
8 class SpecialBlankpage extends UnlistedSpecialPage {
9 public function __construct() {
10 parent::__construct( 'Blankpage' );
11 }
12 public function execute( $par ) {
13 global $wgOut;
14 $this->setHeaders();
15 $wgOut->addWikiMsg('intentionallyblankpage');
16 }
17 }