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