mirror of
https://github.com/misterunknown/ifm.git
synced 2025-08-13 03:23:59 +02:00
Fixed wrong assignment of default language
Signed-off-by: Marco Dickert <marco@misterunknown.de>
This commit is contained in:
464
build/libifm.php
464
build/libifm.php
File diff suppressed because one or more lines are too long
@@ -176,7 +176,7 @@ f00bar;
|
|||||||
if( in_array( $this->config['language'], array_keys( $this->i18n ) ) )
|
if( in_array( $this->config['language'], array_keys( $this->i18n ) ) )
|
||||||
$this->l = $this->i18n[$this->config['language']];
|
$this->l = $this->i18n[$this->config['language']];
|
||||||
else
|
else
|
||||||
$this->l = $this->i18n[0];
|
$this->l = reset($this->i18n);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user