Index: trunk/phase3/config/Installer.php |
— | — | @@ -2092,6 +2092,7 @@ |
2093 | 2093 | $m = array(); |
2094 | 2094 | if( preg_match( '/Messages([A-Z][a-z_]+)\.php$/', $f, $m ) ) { |
2095 | 2095 | $code = str_replace( '_', '-', strtolower( $m[1] ) ); |
| 2096 | + if( $code == 'qqq' ) continue; |
2096 | 2097 | if( isset( $wgLanguageNames[$code] ) ) { |
2097 | 2098 | $name = wfBCP47( $code ) . ' - ' . $wgLanguageNames[$code]; |
2098 | 2099 | } else { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -495,6 +495,7 @@ |
496 | 496 | correct type="text" parameter |
497 | 497 | * (bug 482) Don't include TOC in the printable version if it has been hidden |
498 | 498 | * Adjust the time according to the user configuration on Special:Revisiondelete |
| 499 | +* (bug 20624) Installation no longer allows "qqq" as the chosen language |
499 | 500 | |
500 | 501 | == API changes in 1.16 == |
501 | 502 | |