From c5f260df74cb20a3bda9a22bbb3d473e6a10a060 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Wed, 17 Dec 2025 08:24:06 +0100 Subject: [PATCH] always include vendor/autoload.php (was not included in install mode) --- inc/inc.Settings.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/inc/inc.Settings.php b/inc/inc.Settings.php index 5ff65c570..1a21097e7 100644 --- a/inc/inc.Settings.php +++ b/inc/inc.Settings.php @@ -78,8 +78,6 @@ if(isset($settings->_maxExecutionTime)) { */ ini_set('include_path', $settings->_rootDir. PATH_SEPARATOR .ini_get('include_path')); -/* composer is installed in vendor directory, but install tool does not need it */ -if(!defined("SEEDDMS_INSTALL")) - require_once 'vendor/autoload.php'; +require_once 'vendor/autoload.php'; require_once "inc.Version.php";