Allow all if open_basedir is not set.
authorRoland Häder <roland@mxchange.org>
Tue, 26 May 2015 21:13:16 +0000 (23:13 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 26 May 2015 21:13:16 +0000 (23:13 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/class_BaseFrameworkSystem.php

index f4d7d6787493e73a85994085cf1010ece226cc56..3ea5bcf5d49cda30bbfa8d5f3ce1bd1096b90c13 100644 (file)
@@ -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;