Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -225,15 +225,6 @@ |
226 | 226 | } |
227 | 227 | |
228 | 228 | /** |
229 | | - * Seed Mersenne Twister |
230 | | - * No-op for compatibility; only necessary in PHP < 4.2.0 |
231 | | - * @deprecated. Remove in 1.18 |
232 | | - */ |
233 | | -function wfSeedRandom() { |
234 | | - wfDeprecated(__FUNCTION__); |
235 | | -} |
236 | | - |
237 | | -/** |
238 | 229 | * Get a random decimal value between 0 and 1, in a way |
239 | 230 | * not likely to give duplicate values for any realistic |
240 | 231 | * number of articles. |
— | — | @@ -2216,7 +2207,7 @@ |
2217 | 2208 | |
2218 | 2209 | /** |
2219 | 2210 | * BC wrapper for MimeMagic::singleton() |
2220 | | - * @deprecated No longer needed as of 1.17 (r68836). |
| 2211 | + * @deprecated No longer needed as of 1.17 (r68836). Remove in 1.19. |
2221 | 2212 | */ |
2222 | 2213 | function &wfGetMimeMagic() { |
2223 | 2214 | wfDeprecated( __FUNCTION__ ); |
— | — | @@ -3268,9 +3259,10 @@ |
3269 | 3260 | |
3270 | 3261 | /** |
3271 | 3262 | * Load an extension messages file |
3272 | | - * @deprecated in 1.16 (warnings in 1.18, removed in ?) |
| 3263 | + * @deprecated in 1.16, warnings in 1.18, remove in 1.20 |
3273 | 3264 | */ |
3274 | 3265 | function wfLoadExtensionMessages( $extensionName, $langcode = false ) { |
| 3266 | + wfDeprecated( __FUNCTION__ ); |
3275 | 3267 | } |
3276 | 3268 | |
3277 | 3269 | /** |