d2b86fc99b3b014954e84b9201e783ec1b0f07d6
[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 $wgOut->addWikiMsg('intentionallyblankpage');
15 }
16 }