summaryrefslogtreecommitdiff
path: root/includes/WikiError.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2011-12-03 13:29:22 +0100
committerPierre Schmitz <pierre@archlinux.de>2011-12-03 13:29:22 +0100
commitca32f08966f1b51fcb19460f0996bb0c4048e6fe (patch)
treeec04cc15b867bc21eedca904cea9af0254531a11 /includes/WikiError.php
parenta22fbfc60f36f5f7ee10d5ae6fe347340c2ee67c (diff)
Update to MediaWiki 1.18.0
* also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing
Diffstat (limited to 'includes/WikiError.php')
-rw-r--r--includes/WikiError.php12
1 files changed, 12 insertions, 0 deletions
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 );