Ensure that the default version of jQuery and jQuery Migrate are always loaded during install

This commit is contained in:
Kijin Sung 2026-02-26 13:15:12 +09:00
parent 465248a7a4
commit 2ede904d56

View file

@ -28,6 +28,11 @@ class installView extends install
// Specify the template path. // Specify the template path.
$this->setTemplatePath($this->module_path.'tpl'); $this->setTemplatePath($this->module_path.'tpl');
// Set default frontend configurations.
config('view.jquery_version', 3);
config('view.minify_scripts', 'none');
config('view.concat_scripts', 'none');
// Check the environment. // Check the environment.
$oInstallController = getController('install'); $oInstallController = getController('install');
self::$checkEnv = $oInstallController->checkInstallEnv(); self::$checkEnv = $oInstallController->checkInstallEnv();