From 9b3b4def5d60f701d664d3e263c5fd40d5d513be Mon Sep 17 00:00:00 2001
From: Oliver Hader <oliver@typo3.org>
Date: Fri, 13 Jul 2018 16:45:43 +0200
Subject: [PATCH] [BUGFIX] Avoid PHP warning when using Phar archive with
 open_basedir

Including files from Phar archives (e.g. "phar://file.phar/autoload.php")
does not work properly with having PHP setting open_basedir defined. The
reason for that is, that TYPO3's custom PharStreamWrapper tries to find
the appropriate base Phar file using file_exists() calls internally. In
case those files are not part of the open_basedir restriction - which is
the case for everything prefixed with the "phar://" scheme - a PHP
warning is shown.

Resolves: #85547
Releases: master, 8.7, 7.6
Change-Id: I72fdd7f0c016c0a8b1ed56a82b6b4042cac4d930
Reviewed-on: https://review.typo3.org/57587
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Andreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: Andreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
---
 typo3/sysext/core/Classes/IO/PharStreamWrapper.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/core/Classes/IO/PharStreamWrapper.php b/typo3/sysext/core/Classes/IO/PharStreamWrapper.php
index 0b53bdbcb6fb..69ffdfb99e07 100644
--- a/typo3/sysext/core/Classes/IO/PharStreamWrapper.php
+++ b/typo3/sysext/core/Classes/IO/PharStreamWrapper.php
@@ -472,7 +472,7 @@ class PharStreamWrapper
 
         while (count($parts)) {
             $currentPath = implode('/', $parts);
-            if (file_exists($currentPath)) {
+            if (@file_exists($currentPath)) {
                 return $currentPath;
             }
             array_pop($parts);
-- 
GitLab