Index: trunk/phase3/includes/User.php |
— | — | @@ -2355,8 +2355,8 @@ |
2356 | 2356 | /** |
2357 | 2357 | * Get the current skin, loading it if required |
2358 | 2358 | * @return Skin The current skin |
2359 | | - * @todo: FIXME : need to check the old failback system [AV] |
2360 | | - * @deprecated Use ->getSkin() in the most relevant outputting context you have |
| 2359 | + * @todo FIXME : need to check the old failback system [AV] |
| 2360 | + * @deprecated since 1.18 Use ->getSkin() in the most relevant outputting context you have |
2361 | 2361 | */ |
2362 | 2362 | function getSkin() { |
2363 | 2363 | return RequestContext::getMain()->getSkin(); |
Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -610,7 +610,7 @@ |
611 | 611 | /** |
612 | 612 | * Get a message from the language file, for the UI elements |
613 | 613 | * |
614 | | - * @deprecated in 1.18; use wfMessage() |
| 614 | + * @deprecated since 1.18; use wfMessage() |
615 | 615 | */ |
616 | 616 | function wfMsgNoDB( $key ) { |
617 | 617 | wfDeprecated( __FUNCTION__ ); |
— | — | @@ -622,7 +622,7 @@ |
623 | 623 | /** |
624 | 624 | * Get a message from the language file, for the content |
625 | 625 | * |
626 | | - * @deprecated in 1.18; use wfMessage() |
| 626 | + * @deprecated since 1.18; use wfMessage() |
627 | 627 | */ |
628 | 628 | function wfMsgNoDBForContent( $key ) { |
629 | 629 | wfDeprecated( __FUNCTION__ ); |
— | — | @@ -660,7 +660,7 @@ |
661 | 661 | /** |
662 | 662 | * This function provides the message source for messages to be edited which are *not* stored in the database. |
663 | 663 | * |
664 | | - * @deprecated in 1.18; use wfMessage() |
| 664 | + * @deprecated since 1.18; use wfMessage() |
665 | 665 | * @param $key String |
666 | 666 | */ |
667 | 667 | function wfMsgWeirdKey( $key ) { |
— | — | @@ -3174,7 +3174,7 @@ |
3175 | 3175 | /** |
3176 | 3176 | * Load an extension messages file |
3177 | 3177 | * |
3178 | | - * @deprecated in 1.16, warnings in 1.18, remove in 1.20 |
| 3178 | + * @deprecated since 1.16, warnings in 1.18, remove in 1.20 |
3179 | 3179 | * @codeCoverageIgnore |
3180 | 3180 | */ |
3181 | 3181 | function wfLoadExtensionMessages() { |
— | — | @@ -3268,7 +3268,7 @@ |
3269 | 3269 | |
3270 | 3270 | /** |
3271 | 3271 | * Used to be used for outputting text in the installer/updater |
3272 | | - * @deprecated Warnings in 1.19, removal in 1.20 |
| 3272 | + * @deprecated since 1.18, warnings in 1.19, remove in 1.20 |
3273 | 3273 | */ |
3274 | 3274 | function wfOut( $s ) { |
3275 | 3275 | wfDeprecated( __METHOD__ ); |
Index: trunk/phase3/includes/api/ApiParse.php |
— | — | @@ -369,7 +369,8 @@ |
370 | 370 | } |
371 | 371 | |
372 | 372 | /** |
373 | | - * @deprecated No modern skin generates langlinks this way, please use langlinks data to generate your own html |
| 373 | + * @deprecated since 1.18 No modern skin generates language links this way, please use language links |
| 374 | + * data to generate your own HTML. |
374 | 375 | */ |
375 | 376 | private function languagesHtml( $languages ) { |
376 | 377 | global $wgContLang, $wgHideInterlanguageLinks; |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -2985,7 +2985,7 @@ |
2986 | 2986 | |
2987 | 2987 | /** |
2988 | 2988 | * Backward compatibility setting, will set $wgArticleCountMethod if it is null. |
2989 | | - * @deprecated in 1.19; use $wgArticleCountMethod instead |
| 2989 | + * @deprecated since 1.19; use $wgArticleCountMethod instead |
2990 | 2990 | */ |
2991 | 2991 | $wgUseCommaCount = false; |
2992 | 2992 | |
— | — | @@ -3138,7 +3138,7 @@ |
3139 | 3139 | |
3140 | 3140 | /** |
3141 | 3141 | * Whether or not to allow and use real name fields. |
3142 | | - * @deprecated in 1.16, use $wgHiddenPrefs[] = 'realname' below to disable real |
| 3142 | + * @deprecated since 1.16, use $wgHiddenPrefs[] = 'realname' below to disable real |
3143 | 3143 | * names |
3144 | 3144 | */ |
3145 | 3145 | $wgAllowRealName = true; |
Index: trunk/phase3/includes/SpecialPage.php |
— | — | @@ -109,7 +109,7 @@ |
110 | 110 | * an associative record to $wgSpecialPages. This avoids autoloading SpecialPage. |
111 | 111 | * |
112 | 112 | * @param $page SpecialPage |
113 | | - * @deprecated in 1.7, warnings in 1.17, might be removed in 1.20 |
| 113 | + * @deprecated since 1.7, warnings in 1.17, might be removed in 1.20 |
114 | 114 | */ |
115 | 115 | static function addPage( &$page ) { |
116 | 116 | wfDeprecated( __METHOD__ ); |