1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-10 10:04:01 +02:00

Fixed wrong assignment of default language

Signed-off-by: Marco Dickert <marco@misterunknown.de>
This commit is contained in:
Marco Dickert
2019-10-05 19:24:24 +02:00
parent d2421f89c9
commit a625b15598
3 changed files with 249 additions and 685 deletions

File diff suppressed because one or more lines are too long

466
ifm.php

File diff suppressed because one or more lines are too long

View File

@@ -176,7 +176,7 @@ f00bar;
if( in_array( $this->config['language'], array_keys( $this->i18n ) ) )
$this->l = $this->i18n[$this->config['language']];
else
$this->l = $this->i18n[0];
$this->l = reset($this->i18n);
}
/**