From: Roland Häder Date: Tue, 26 May 2015 21:13:16 +0000 (+0200) Subject: Allow all if open_basedir is not set. X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=8b22bc0e24500bb2b00e1112203f767ca73210d5;ds=sidebyside Allow all if open_basedir is not set. Signed-off-by: Roland Häder --- 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;