MediaWiki  REL1_24
ReadOnlyError.php
Go to the documentation of this file.
00001 <?php
00028 class ReadOnlyError extends ErrorPageError {
00029     public function __construct() {
00030         parent::__construct(
00031             'readonly',
00032             'readonlytext',
00033             wfReadOnlyReason() ?: array()
00034         );
00035     }
00036 }