MediaWiki
REL1_22
|
00001 <?php 00030 class SpecialBlankpage extends UnlistedSpecialPage { 00031 public function __construct() { 00032 parent::__construct( 'Blankpage' ); 00033 } 00034 00035 public function execute( $par ) { 00036 $this->setHeaders(); 00037 $this->getOutput()->addWikiMsg( 'intentionallyblankpage' ); 00038 } 00039 }