From 0afc53f2b2f7f920a365a2714fb68a3cd39322a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor?= Date: Tue, 27 Feb 2018 14:04:35 +0100 Subject: [PATCH] Update header.php Now loading lang.js file. --- e107_admin/header.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_admin/header.php b/e107_admin/header.php index 254886ca7..6908df987 100644 --- a/e107_admin/header.php +++ b/e107_admin/header.php @@ -83,11 +83,11 @@ function loadJSAddons() e107::js('footer', '{e_WEB}js/core/admin.jquery.js', 'jquery', 5); // Load all default functions. e107::js('footer', '{e_WEB}js/core/all.jquery.js', 'jquery', 5); // Load all default functions. - $plUpload = '{e_WEB}js/plupload/i18n/' . e_LAN . '.js'; + $plUpload = 'plupload/i18n/' . e_LAN . '.js'; if(e_LAN != 'en' && file_exists(e_WEB_JS . $plUpload)) { - e107::js('footer', $plUpload, 'jquery', 5); + e107::js('core', $plUpload, 'jquery', 5); } }