[Legacy] Move jssource/minify require to correct place

Require was being done before dependencies were set
This commit is contained in:
Clemente Raposo 2025-01-15 11:12:14 +00:00 committed by c.raposo
parent 189bbdb6df
commit 9605944025

View file

@ -122,6 +122,7 @@ class AppInstallService
//check to see if the script files need to be rebuilt, add needed variables to request array //check to see if the script files need to be rebuilt, add needed variables to request array
$_REQUEST['root_directory'] = getcwd(); $_REQUEST['root_directory'] = getcwd();
$_REQUEST['js_rebuild_concat'] = 'rebuild'; $_REQUEST['js_rebuild_concat'] = 'rebuild';
require_once 'jssource/minify.php'; // Do we need?
//Set whether the install is silent or not //Set whether the install is silent or not
$silentInstall = true; $silentInstall = true;