admin includes updates, Class L10n fix

- Class L10n had wrong default path to the language file, so the file
load failed
- Fix some default admin includes file for template settings
This commit is contained in:
Clemens Schwaighofer
2019-06-25 17:07:47 +09:00
parent 19458a2eba
commit 436025dd22
4 changed files with 40 additions and 136 deletions

View File

@@ -99,6 +99,6 @@ if (is_dir(BASE.TEMPLATES_C)) {
if (is_dir(BASE.CACHE)) {
$smarty->setCacheDir(BASE.CACHE);
}
$smarty->display($MASTER_TEMPLATE_NAME, $TEMPLATE.$lang, $TEMPLATE.$lang);
$smarty->display($MASTER_TEMPLATE_NAME, $CACHE_ID.($CACHE_ID ? '_' : '').$lang, $COMPILE_ID.($COMPILE_ID ? '_' : '').$lang);
// __END__