diff options
author | friendica <info@friendica.com> | 2012-01-28 12:09:17 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-28 12:09:17 -0800 |
commit | d54042dd3898c5f4f0bc67df576484c6d25c86b2 (patch) | |
tree | 548e34b55fe5610032c9a85d3ee4b835ed71f75b /include/attach.php | |
parent | 5161be67e9f4eebe5723b44ddd3ad37e18f0a632 (diff) | |
download | volse-hubzilla-d54042dd3898c5f4f0bc67df576484c6d25c86b2.tar.gz volse-hubzilla-d54042dd3898c5f4f0bc67df576484c6d25c86b2.tar.bz2 volse-hubzilla-d54042dd3898c5f4f0bc67df576484c6d25c86b2.zip |
mime_content_type requires access to the file, not just the name
Diffstat (limited to 'include/attach.php')
-rwxr-xr-x | include/attach.php | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/attach.php b/include/attach.php index 4001d2af1..6d611cec0 100755 --- a/include/attach.php +++ b/include/attach.php @@ -38,6 +38,7 @@ function z_mime_content_type($filename) { // audio/video 'mp3' => 'audio/mpeg', + 'wav' => 'audio/wav', 'qt' => 'video/quicktime', 'mov' => 'video/quicktime', 'ogg' => 'application/ogg', @@ -68,12 +69,13 @@ function z_mime_content_type($filename) { return $mime_types[$ext]; } } - elseif (function_exists('finfo_open')) { - $finfo = finfo_open(FILEINFO_MIME); - $mimetype = finfo_file($finfo, $filename); - finfo_close($finfo); - return $mimetype; - } +// can't use this because we're just passing a name, e.g. not a file that can be opened +// elseif (function_exists('finfo_open')) { +// $finfo = @finfo_open(FILEINFO_MIME); +// $mimetype = @finfo_file($finfo, $filename); +// @finfo_close($finfo); +// return $mimetype; +// } else { return 'application/octet-stream'; } |