MediaWiki REL1_37
BadTitleError.php
Go to the documentation of this file.
1<?php
39 public function __construct( $msg = 'badtitletext', $params = [] ) {
40 if ( $msg instanceof MalformedTitleException ) {
41 $errorMessage = $msg->getErrorMessage();
42 if ( !$errorMessage ) {
43 parent::__construct( 'badtitle', 'badtitletext', [] );
44 } else {
45 $errorMessageParams = $msg->getErrorMessageParameters();
46 parent::__construct( 'badtitle', $errorMessage, $errorMessageParams );
47 }
48 } else {
49 parent::__construct( 'badtitle', $msg, $params );
50 }
51 }
52}
An error page that emits an HTTP 400 Bad Request status code.
Show an error page on a badtitle.
__construct( $msg='badtitletext', $params=[])
MalformedTitleException is thrown when a TitleParser is unable to parse a title string.