Localisation updates for core and extension messages from translatewiki.net (2010...
[mediawiki.git] / includes / specials / SpecialBlankpage.php
blobe1fadd0229020d9edf5b4a09091d7aab167485c1
1 <?php
2 /**
3 * Special page designed for basic benchmarking of
4 * MediaWiki since it doesn't really do much.
6 * @ingroup SpecialPage
7 */
8 class SpecialBlankpage extends UnlistedSpecialPage {
9 public function __construct() {
10 parent::__construct( 'Blankpage' );
12 public function execute( $par ) {
13 global $wgOut;
14 $this->setHeaders();
15 $wgOut->addWikiMsg('intentionallyblankpage');