mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-03 16:19:45 +00:00
parent
db42f2786c
commit
462c005f2c
@ -175,24 +175,28 @@ function parse_mime_type($url)
|
|||||||
'image' => 'image/*',
|
'image' => 'image/*',
|
||||||
'mp3' => 'audio/mpeg',
|
'mp3' => 'audio/mpeg',
|
||||||
];
|
];
|
||||||
// '@' is used to mute open_basedir warning, see issue #818
|
// if-check to avoid excessive php errors about open_basedir restriction (#4502)
|
||||||
if (@is_readable('/etc/mime.types')) {
|
$open_basedir = ini_get('open_basedir');
|
||||||
$file = fopen('/etc/mime.types', 'r');
|
if (! $open_basedir) {
|
||||||
while (($line = fgets($file)) !== false) {
|
// '@' is used to mute open_basedir warning, see issue #818
|
||||||
$line = trim(preg_replace('/#.*/', '', $line));
|
if (@is_readable('/etc/mime.types')) {
|
||||||
if (!$line) {
|
$file = fopen('/etc/mime.types', 'r');
|
||||||
continue;
|
while (($line = fgets($file)) !== false) {
|
||||||
}
|
$line = trim(preg_replace('/#.*/', '', $line));
|
||||||
$parts = preg_split('/\s+/', $line);
|
if (!$line) {
|
||||||
if (count($parts) == 1) {
|
continue;
|
||||||
continue;
|
}
|
||||||
}
|
$parts = preg_split('/\s+/', $line);
|
||||||
$type = array_shift($parts);
|
if (count($parts) == 1) {
|
||||||
foreach ($parts as $part) {
|
continue;
|
||||||
$mime[$part] = $type;
|
}
|
||||||
|
$type = array_shift($parts);
|
||||||
|
foreach ($parts as $part) {
|
||||||
|
$mime[$part] = $type;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
fclose($file);
|
||||||
}
|
}
|
||||||
fclose($file);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user