summaryrefslogtreecommitdiff
path: root/includes/WikiError.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/WikiError.php')
-rw-r--r--includes/WikiError.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/WikiError.php b/includes/WikiError.php
index a634dff6..7c167f61 100644
--- a/includes/WikiError.php
+++ b/includes/WikiError.php
@@ -35,7 +35,7 @@ class WikiError {
* @deprecated since 1.17
*/
function __construct( $message ) {
- wfDeprecated( __METHOD__ );
+ wfDeprecated( __METHOD__, '1.17' );
$this->mMessage = $message;
}
@@ -65,7 +65,7 @@ class WikiError {
* @deprecated since 1.17
*/
public static function isError( $object ) {
- wfDeprecated( __METHOD__ );
+ wfDeprecated( __METHOD__, '1.17' );
if ( $object instanceof WikiError ) {
return true;
} elseif ( $object instanceof Status ) {
@@ -88,7 +88,7 @@ class WikiErrorMsg extends WikiError {
* @deprecated since 1.17
*/
function __construct( $message/*, ... */ ) {
- wfDeprecated( __METHOD__ );
+ wfDeprecated( __METHOD__, '1.17' );
$args = func_get_args();
array_shift( $args );
$this->mMessage = wfMsgReal( $message, $args, true );
@@ -120,7 +120,7 @@ class WikiXmlError extends WikiError {
* @deprecated since 1.17
*/
function __construct( $parser, $message = 'XML parsing error', $context = null, $offset = 0 ) {
- wfDeprecated( __METHOD__ );
+ wfDeprecated( __METHOD__, '1.17' );
$this->mXmlError = xml_get_error_code( $parser );
$this->mColumn = xml_get_current_column_number( $parser );
$this->mLine = xml_get_current_line_number( $parser );