https://bugzilla.wikimedia.org/show_bug.cgi?id=47501
--- Comment #3 from Karin Haenelt <[email protected]> --- currently we are using a very simple "bug fix": $codes = array_keys( Language::getLanguageNames( true ) ); //1.18.1, and similar in 1.20.2 $codes = array("en", "de", "de-formal"); // our added line alternative coding: $wgOurLanguageCodes = array (...); if ($wgOurLanguageCodes) {$codes = $wgOurLanguageCodes;} else $codes = array_keys( Language::getLanguageNames( true ) ); -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
