From 183ffdafd8a284c752a8e9d6e49562a44a4cf026 Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Wed, 4 Mar 2026 16:20:27 +0100 Subject: [PATCH] use bundle only for apps --- application/helpers/hlp_header_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/helpers/hlp_header_helper.php b/application/helpers/hlp_header_helper.php index eb3ac712e..d3699524d 100644 --- a/application/helpers/hlp_header_helper.php +++ b/application/helpers/hlp_header_helper.php @@ -189,7 +189,7 @@ function generateJSModulesInclude($JSModules) for ($tmpJSsCounter = 0; $tmpJSsCounter < count($tmpJSs); $tmpJSsCounter++) { $item = $tmpJSs[$tmpJSsCounter]; - if($use_bundled_javascript) + if($use_bundled_javascript && preg_match('#/js/apps/#', $item)) { $item = preg_replace('#^public/#', 'public/dist/', $item); }