X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=includes%2FWikiError.php;h=08eb80048303f08f44fb50eb3609e88270792eb7;hb=2849d8a6b3542795d230515a600670533adb2692;hp=4b0e68cfa5ac9b1169458adad66ef514a89bea18;hpb=2c88837c1e78d03ec4ba656cc83cb6f629676fe1;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