Index: trunk/phase3/includes/parser/ParserOptions.php |
— | — | @@ -275,7 +275,7 @@ |
276 | 276 | * |
277 | 277 | * @since 1.17 |
278 | 278 | * @param $forOptions Array |
279 | | - * @param $title Title: will be used to get the page content language |
| 279 | + * @param $title Title: will be used to get the page content language (since r97636) |
280 | 280 | * @return \string Page rendering hash |
281 | 281 | */ |
282 | 282 | public function optionsHash( $forOptions, $title = null ) { |
Index: trunk/phase3/languages/LanguageConverter.php |
— | — | @@ -1364,7 +1364,7 @@ |
1365 | 1365 | if ( isset( $this->mVariantFlags[$variant] ) ) { |
1366 | 1366 | // then convert <text to convert> to current language |
1367 | 1367 | $this->mRules = $this->mConverter->autoConvert( $this->mRules, |
1368 | | - $variant ); |
| 1368 | + $variant ); |
1369 | 1369 | } else { // if current variant no in flags, |
1370 | 1370 | // then we check its fallback variants. |
1371 | 1371 | $variantFallbacks = |
— | — | @@ -1376,7 +1376,7 @@ |
1377 | 1377 | // then convert <text to convert> to fallback language |
1378 | 1378 | $this->mRules = |
1379 | 1379 | $this->mConverter->autoConvert( $this->mRules, |
1380 | | - $variantFallback ); |
| 1380 | + $variantFallback ); |
1381 | 1381 | break; |
1382 | 1382 | } |
1383 | 1383 | } |
Index: trunk/phase3/languages/Language.php |
— | — | @@ -3418,6 +3418,8 @@ |
3419 | 3419 | /** |
3420 | 3420 | * Get all message keys for a given language. This is a faster alternative to |
3421 | 3421 | * array_keys( Language::getMessagesFor( $code ) ) |
| 3422 | + * |
| 3423 | + * @since 1.19 |
3422 | 3424 | * @param $code string Language code |
3423 | 3425 | * @return array of message keys (strings) |
3424 | 3426 | */ |