Index: trunk/phase3/includes/User.php |
— | — | @@ -2594,7 +2594,7 @@ |
2595 | 2595 | * @deprecated since 1.18 Use ->getSkin() in the most relevant outputting context you have |
2596 | 2596 | */ |
2597 | 2597 | public function getSkin() { |
2598 | | - //wfDeprecated( __METHOD__, '1.18' ); |
| 2598 | + wfDeprecated( __METHOD__, '1.18' ); |
2599 | 2599 | return RequestContext::getMain()->getSkin(); |
2600 | 2600 | } |
2601 | 2601 | |
— | — | @@ -3186,14 +3186,14 @@ |
3187 | 3187 | |
3188 | 3188 | /** |
3189 | 3189 | * Alias for getEditToken. |
3190 | | - * @deprecated since 1.19, use getEditToken instead. Warnings in 1.21. |
| 3190 | + * @deprecated since 1.19, use getEditToken instead. |
3191 | 3191 | * |
3192 | 3192 | * @param $salt String|Array of Strings Optional function-specific data for hashing |
3193 | 3193 | * @param $request WebRequest object to use or null to use $wgRequest |
3194 | 3194 | * @return String The new edit token |
3195 | 3195 | */ |
3196 | 3196 | public function editToken( $salt = '', $request = null ) { |
3197 | | - # wfDeprecated( __METHOD__, '1.19' ); |
| 3197 | + wfDeprecated( __METHOD__, '1.19' ); |
3198 | 3198 | return $this->getEditToken( $salt, $request ); |
3199 | 3199 | } |
3200 | 3200 | |
Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -1153,7 +1153,7 @@ |
1154 | 1154 | * @return Language |
1155 | 1155 | */ |
1156 | 1156 | function wfUILang() { |
1157 | | - # wfDeprecated( __METHOD__, '1.18' ); // See r105985 and it's revert. Somewhere still used. |
| 1157 | + wfDeprecated( __METHOD__, '1.18' ); |
1158 | 1158 | global $wgLang; |
1159 | 1159 | return $wgLang; |
1160 | 1160 | } |
Index: trunk/phase3/includes/logging/LogPage.php |
— | — | @@ -175,7 +175,7 @@ |
176 | 176 | * @deprecated in 1.19, warnings in 1.21. Use getName() |
177 | 177 | */ |
178 | 178 | public static function logName( $type ) { |
179 | | - # wfDeprecated( __METHOD__, '1.19' ); |
| 179 | + wfDeprecated( __METHOD__, '1.19' ); |
180 | 180 | global $wgLogNames; |
181 | 181 | |
182 | 182 | if( isset( $wgLogNames[$type] ) ) { |
— | — | @@ -195,7 +195,7 @@ |
196 | 196 | * @deprecated in 1.19, warnings in 1.21. Use getDescription() |
197 | 197 | */ |
198 | 198 | public static function logHeader( $type ) { |
199 | | - # wfDeprecated( __METHOD__, '1.19' ); |
| 199 | + wfDeprecated( __METHOD__, '1.19' ); |
200 | 200 | global $wgLogHeaders; |
201 | 201 | return wfMsgExt( $wgLogHeaders[$type], array( 'parseinline' ) ); |
202 | 202 | } |