aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-10-27 21:18:03 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-10-27 21:18:03 -0700
commit612efe56f16955a9c202193fe246789825e939db (patch)
tree69320ba5680247c9ea5ce6e26e328531e43ebeab /include
parent07c0bc7b04ef2021ceb39c85e0458544df93edc8 (diff)
parentf5774bba6f914a1e10225dbee86260b348192be8 (diff)
downloadvolse-hubzilla-612efe56f16955a9c202193fe246789825e939db.tar.gz
volse-hubzilla-612efe56f16955a9c202193fe246789825e939db.tar.bz2
volse-hubzilla-612efe56f16955a9c202193fe246789825e939db.zip
Merge https://github.com/redmatrix/hubzilla into pending_merge
Diffstat (limited to 'include')
-rw-r--r--include/attach.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/attach.php b/include/attach.php
index a959a5bcb..1bba88c63 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -108,9 +108,9 @@ function z_mime_content_type($filename) {
'oth' => 'application/vnd.oasis.opendocument.text-web'
);
- $dot = strpos($filename, '.');
- if ($dot !== false) {
- $ext = strtolower(substr($filename, $dot + 1));
+ $last_dot = strrpos($filename, '.');
+ if ($last_dot !== false) {
+ $ext = strtolower(substr($filename, $last_dot + 1));
if (array_key_exists($ext, $mime_types)) {
return $mime_types[$ext];
}