aboutsummaryrefslogtreecommitdiffstats
path: root/langs/report.php
diff options
context:
space:
mode:
Diffstat (limited to 'langs/report.php')
-rw-r--r--langs/report.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/langs/report.php b/langs/report.php
index f33c10c1c..a113aa109 100644
--- a/langs/report.php
+++ b/langs/report.php
@@ -200,7 +200,6 @@
}
$en_language = array_shift($languages); // shift English for proper sorting
krsort($languages, SORT_NUMERIC);
- array_unshift($languages, $en_language); // unshift English back
$enFiles = array_map(function ($e) { return str_replace('en/', '', $e); }, $enFiles);
$thfiles = '<th>' . implode('</th><th>', $enFiles) . '</th>' . PHP_EOL;
@@ -210,6 +209,7 @@
foreach ($chunks as $chunk) {
$table_body = array_merge($table_body, $chunk, array(count($chunk) > 4 ? '<tr><th>&nbsp;</th><th>File</th>' . $thfiles : ''));
}
+ array_unshift($table_body, $en_language); // unshift English back
$s = implode($table_body);
echo <<<S