From 9605944025e1fcd2c34da59d2921aa7665b3962c Mon Sep 17 00:00:00 2001 From: Clemente Raposo Date: Wed, 15 Jan 2025 11:12:14 +0000 Subject: [PATCH] [Legacy] Move jssource/minify require to correct place Require was being done before dependencies were set --- public/legacy/include/portability/Install/AppInstallService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/public/legacy/include/portability/Install/AppInstallService.php b/public/legacy/include/portability/Install/AppInstallService.php index 23860efe2..843086b67 100644 --- a/public/legacy/include/portability/Install/AppInstallService.php +++ b/public/legacy/include/portability/Install/AppInstallService.php @@ -122,6 +122,7 @@ class AppInstallService //check to see if the script files need to be rebuilt, add needed variables to request array $_REQUEST['root_directory'] = getcwd(); $_REQUEST['js_rebuild_concat'] = 'rebuild'; + require_once 'jssource/minify.php'; // Do we need? //Set whether the install is silent or not $silentInstall = true;