From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- includes/WikiError.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'includes/WikiError.php') diff --git a/includes/WikiError.php b/includes/WikiError.php index 452554c3..a634dff6 100644 --- a/includes/WikiError.php +++ b/includes/WikiError.php @@ -31,8 +31,11 @@ class WikiError { /** * @param $message string + * + * @deprecated since 1.17 */ function __construct( $message ) { + wfDeprecated( __METHOD__ ); $this->mMessage = $message; } @@ -58,8 +61,11 @@ class WikiError { * * @param $object mixed * @return bool + * + * @deprecated since 1.17 */ public static function isError( $object ) { + wfDeprecated( __METHOD__ ); if ( $object instanceof WikiError ) { return true; } elseif ( $object instanceof Status ) { @@ -78,8 +84,11 @@ class WikiErrorMsg extends WikiError { /** * @param $message String: wiki message name * @param ... parameters to pass to wfMsg() + * + * @deprecated since 1.17 */ function __construct( $message/*, ... */ ) { + wfDeprecated( __METHOD__ ); $args = func_get_args(); array_shift( $args ); $this->mMessage = wfMsgReal( $message, $args, true ); @@ -107,8 +116,11 @@ class WikiXmlError extends WikiError { * @param $message string * @param $context * @param $offset Int + * + * @deprecated since 1.17 */ function __construct( $parser, $message = 'XML parsing error', $context = null, $offset = 0 ) { + wfDeprecated( __METHOD__ ); $this->mXmlError = xml_get_error_code( $parser ); $this->mColumn = xml_get_current_column_number( $parser ); $this->mLine = xml_get_current_line_number( $parser ); -- cgit v1.2.3-54-g00ecf