From: Christian Weiske Date: Thu, 22 Sep 2016 09:39:11 +0000 (+0200) Subject: Determine URL file type from path, strip query parameters first X-Git-Tag: v0.3.0~2 X-Git-Url: https://git.cweiske.de/shpub.git/commitdiff_plain/2fd49930473aa9a46ba5a1755606a51764e5175f?hp=d2570fcd9d41934299fdd07e7c714fa5b97a5cbd Determine URL file type from path, strip query parameters first --- diff --git a/src/shpub/Command/AbstractProps.php b/src/shpub/Command/AbstractProps.php index 7707ea9..90cc0ff 100644 --- a/src/shpub/Command/AbstractProps.php +++ b/src/shpub/Command/AbstractProps.php @@ -215,8 +215,9 @@ class Command_AbstractProps foreach ($files as $filePath) { if (strpos($filePath, '://') !== false) { //url + $urlPath = parse_url($filePath, PHP_URL_PATH); $mte = new \MIME_Type_Extension(); - $mimetype = $mte->getMIMEType($filePath); + $mimetype = $mte->getMIMEType($urlPath); $media = \MIME_Type::getMedia($mimetype); if (!isset($urlList[$media])) { Log::err('File type not allowed: ' . $mimetype);