From 80321c12fe904599a908a2fd9851466829080ced Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Thu, 22 Jan 2026 13:15:44 +0100 Subject: [PATCH] fix checking for contentDir and rootDir --- inc/inc.ClassSettings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/inc.ClassSettings.php b/inc/inc.ClassSettings.php index 89022334c..d9acb97df 100644 --- a/inc/inc.ClassSettings.php +++ b/inc/inc.ClassSettings.php @@ -1434,7 +1434,7 @@ class Settings { /* {{{ */ $result = array(); // $this->_rootDir - if (!file_exists($this->_rootDir ."inc/inc.Settings.php")) { + if (!file_exists($this->_rootDir ."/inc/inc.Settings.php")) { $result["rootDir"] = array( "status" => "notfound", "type" => "error", @@ -1481,7 +1481,7 @@ class Settings { /* {{{ */ // $this->_contentDir if (!file_exists($this->_contentDir)) { - if (file_exists($rootDir.'data/')) { + if (file_exists($rootDir.'/data/')) { $result["contentDir"] = array( "status" => "notfound", "type" => "error",