- FIX -
The bug is in the "includes/lang.php" file.
In Debian, it is located in the "/usr/share/zoneminder/" directory. In some cases it can be in the "/var/www/" dir.
In that file, change the line where it's written:
Code: Select all
$userLangFile = $prefix.$user['Language'].'.php';
Code: Select all
$userLangFile = $prefix.'lang/'.$user['Language'].'.php';
Couldn't be simpler.