blob: e1fadd0229020d9edf5b4a09091d7aab167485c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* Special page designed for basic benchmarking of
* MediaWiki since it doesn't really do much.
*
* @ingroup SpecialPage
*/
class SpecialBlankpage extends UnlistedSpecialPage {
public function __construct() {
parent::__construct( 'Blankpage' );
}
public function execute( $par ) {
global $wgOut;
$this->setHeaders();
$wgOut->addWikiMsg('intentionallyblankpage');
}
}
|