Index: branches/REL1_17/phase3/includes/WikiError.php |
— | — | @@ -33,7 +33,6 @@ |
34 | 34 | * @param $message string |
35 | 35 | */ |
36 | 36 | function __construct( $message ) { |
37 | | - wfDeprecated( __METHOD__ ); |
38 | 37 | $this->mMessage = $message; |
39 | 38 | } |
40 | 39 | |
— | — | @@ -61,7 +60,6 @@ |
62 | 61 | * @return bool |
63 | 62 | */ |
64 | 63 | public static function isError( $object ) { |
65 | | - wfDeprecated( __METHOD__ ); |
66 | 64 | if ( $object instanceof WikiError ) { |
67 | 65 | return true; |
68 | 66 | } elseif ( $object instanceof Status ) { |
— | — | @@ -82,7 +80,6 @@ |
83 | 81 | * @param ... parameters to pass to wfMsg() |
84 | 82 | */ |
85 | 83 | function __construct( $message/*, ... */ ) { |
86 | | - wfDeprecated( __METHOD__ ); |
87 | 84 | $args = func_get_args(); |
88 | 85 | array_shift( $args ); |
89 | 86 | $this->mMessage = wfMsgReal( $message, $args, true ); |
— | — | @@ -112,7 +109,6 @@ |
113 | 110 | * @param $offset Int |
114 | 111 | */ |
115 | 112 | function __construct( $parser, $message = 'XML parsing error', $context = null, $offset = 0 ) { |
116 | | - wfDeprecated( __METHOD__ ); |
117 | 113 | $this->mXmlError = xml_get_error_code( $parser ); |
118 | 114 | $this->mColumn = xml_get_current_column_number( $parser ); |
119 | 115 | $this->mLine = xml_get_current_line_number( $parser ); |
Index: branches/REL1_17/phase3/RELEASE-NOTES |
— | — | @@ -465,7 +465,6 @@ |
466 | 466 | * Partial workaround for bug 6220: at least make files on shared repositories |
467 | 467 | show up as (struck-out) bluelinks instead of redlinks on Special:WantedFiles |
468 | 468 | * rebuildFileCache.php no longer creates inappropriate cache files for redirects |
469 | | -* (bug 23119) WikiError class and subclasses are now marked as deprecated |
470 | 469 | * (bug 18372) $wgFileExtensions will now override $wgFileBlacklist |
471 | 470 | |
472 | 471 | === API changes in 1.17 === |