aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Template/ResourceLocator.php
diff options
context:
space:
mode:
authorKarel Hink <info@karelhink.cz>2021-07-30 19:28:52 +0000
committerKarel Hink <info@karelhink.cz>2021-07-30 19:28:52 +0000
commit18cc6c11b51b94ef0e2be55a0cf11de920b87870 (patch)
tree47cd6e9e85560720b3c0184024b43962156f50a5 /lib/private/Template/ResourceLocator.php
parent7170c03f0e11a2f7385d909cd0b98f90e0ce984c (diff)
downloadnextcloud-server-18cc6c11b51b94ef0e2be55a0cf11de920b87870.tar.gz
nextcloud-server-18cc6c11b51b94ef0e2be55a0cf11de920b87870.zip
Fix Lots of Error: file_exists(): open_basedir restriction in effect. in Log
Signed-off-by: Karel Hink <info@karelhink.cz>
Diffstat (limited to 'lib/private/Template/ResourceLocator.php')
-rwxr-xr-xlib/private/Template/ResourceLocator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Template/ResourceLocator.php b/lib/private/Template/ResourceLocator.php
index 3f3299e2e84..3ca34259907 100755
--- a/lib/private/Template/ResourceLocator.php
+++ b/lib/private/Template/ResourceLocator.php
@@ -102,7 +102,7 @@ abstract class ResourceLocator {
* @return bool True if the resource was found, false otherwise
*/
protected function appendIfExist($root, $file, $webRoot = null) {
- if (is_file($root.'/'.$file)) {
+ if ($root !== false && is_file($root.'/'.$file)) {
$this->append($root, $file, $webRoot, false);
return true;
}