X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FWikiError.php;h=08eb80048303f08f44fb50eb3609e88270792eb7;hb=3195d2ab7ff55e2633ddcfa86188f61f1fd26184;hp=4b0e68cfa5ac9b1169458adad66ef514a89bea18;hpb=fae05504fedd31eee393b5c2263521874c9383a8;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/WikiError.php b/includes/WikiError.php index 4b0e68cfa5..08eb800483 100644 --- a/includes/WikiError.php +++ b/includes/WikiError.php @@ -82,7 +82,7 @@ class WikiError { */ class WikiErrorMsg extends WikiError { /** - * @param $message String: wiki message name + * @param string $message wiki message name * @param ... parameters to pass to wfMsg() * * @deprecated since 1.17 @@ -91,22 +91,22 @@ class WikiErrorMsg extends WikiError { wfDeprecated( __METHOD__, '1.17' ); $args = func_get_args(); array_shift( $args ); - $this->mMessage = wfMsgReal( $message, $args, true ); + $this->mMessage = wfMessage( $message )->rawParams( $args )->text(); $this->mMsgKey = $message; $this->mMsgArgs = $args; } - + function getMessageKey() { return $this->mMsgKey; } - + function getMessageArgs() { return $this->mMsgArgs; } } /** - * Error class designed to handle errors involved with + * Error class designed to handle errors involved with * XML parsing * @ingroup Exception */ @@ -143,7 +143,7 @@ class WikiXmlError extends WikiError { } function _extractContext( $context, $offset ) { - if( is_null( $context ) ) { + if ( is_null( $context ) ) { return null; } else { // Hopefully integer overflow will be handled transparently here