From 736c30623a3f0038a6962cf69827903aa06aa2ec Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Thu, 18 Dec 2025 13:50:56 +0100 Subject: [PATCH] use () when calling require_once --- install/install.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/install.php b/install/install.php index 88b61025b..afdbb607d 100644 --- a/install/install.php +++ b/install/install.php @@ -62,7 +62,7 @@ function fileExistsInIncludePath($file) { /* {{{ */ /** * Load default settings + set */ -require_once '../vendor/autoload.php'; +require_once('../vendor/autoload.php'); require_once('../inc/inc.Version.php'); $ver = new SeedDMS_Version(); define("SEEDDMS_INSTALL", "on"); @@ -142,7 +142,7 @@ if(isset($settings->_extraPath)) */ $theme = "bootstrap"; include("../inc/inc.Language.php"); -include "../languages/en_GB/lang.inc"; +include("../languages/en_GB/lang.inc"); include("../inc/inc.ClassUI.php"); include("class.Install.php");