From 8b22bc0e24500bb2b00e1112203f767ca73210d5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 26 May 2015 23:13:16 +0200 Subject: [PATCH] Allow all if open_basedir is not set. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- inc/classes/main/class_BaseFrameworkSystem.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index f4d7d678..3ea5bcf5 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -3253,7 +3253,10 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { $isReachable = TRUE; } // END - if } // END - foreach - } // END - if + } else { + // If open_basedir is not set, all is allowed + $isReachable = TRUE; + } // Return status return $isReachable; -- 2.30.2