diff --git a/lib/utils.php b/lib/utils.php index 07806e7c..1f6aa799 100644 --- a/lib/utils.php +++ b/lib/utils.php @@ -175,24 +175,28 @@ function parse_mime_type($url) 'image' => 'image/*', 'mp3' => 'audio/mpeg', ]; - // '@' is used to mute open_basedir warning, see issue #818 - if (@is_readable('/etc/mime.types')) { - $file = fopen('/etc/mime.types', 'r'); - while (($line = fgets($file)) !== false) { - $line = trim(preg_replace('/#.*/', '', $line)); - if (!$line) { - continue; - } - $parts = preg_split('/\s+/', $line); - if (count($parts) == 1) { - continue; - } - $type = array_shift($parts); - foreach ($parts as $part) { - $mime[$part] = $type; + // if-check to avoid excessive php errors about open_basedir restriction (#4502) + $open_basedir = ini_get('open_basedir'); + if (! $open_basedir) { + // '@' is used to mute open_basedir warning, see issue #818 + if (@is_readable('/etc/mime.types')) { + $file = fopen('/etc/mime.types', 'r'); + while (($line = fgets($file)) !== false) { + $line = trim(preg_replace('/#.*/', '', $line)); + if (!$line) { + continue; + } + $parts = preg_split('/\s+/', $line); + if (count($parts) == 1) { + continue; + } + $type = array_shift($parts); + foreach ($parts as $part) { + $mime[$part] = $type; + } } + fclose($file); } - fclose($file); } }