Update init.php

remove lang debug
This commit is contained in:
Focuslinkstech 2024-11-25 11:36:30 +01:00
parent 91e7caae80
commit 73b829b8c1

View File

@ -152,7 +152,6 @@ $lan_file = $root_path . File::pathFixer('system/lan/' . $config['language'] . '
if (file_exists($lan_file)) { if (file_exists($lan_file)) {
$_L = json_decode(file_get_contents($lan_file), true); $_L = json_decode(file_get_contents($lan_file), true);
} else { } else {
die("why");
$_L['author'] = 'Auto Generated by PHPNuxBill Script'; $_L['author'] = 'Auto Generated by PHPNuxBill Script';
file_put_contents($lan_file, json_encode($_L)); file_put_contents($lan_file, json_encode($_L));
} }