1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Skip inactive translations (currently only arabic in that list)

This commit is contained in:
Hannes Magnusson
2007-03-08 11:50:59 +00:00
parent 543d376f35
commit 598de4baca

View File

@@ -89,6 +89,9 @@ $files = array(); $found_formats = array();
// Go through all possible manual languages
foreach ($LANGUAGES as $langcode => $language) {
if(isset($INACTIVE_ONLINE_LANGUAGES[$langcode])) {
continue;
}
// Go through all possible manual formats
foreach ($formats as $formatname => $extension) {