summaryrefslogtreecommitdiffstats
path: root/app/class/obj.class.php
diff options
context:
space:
mode:
authorMalf Furious <m@lfurio.us>2018-10-31 21:23:27 -0400
committerMalf Furious <m@lfurio.us>2018-10-31 21:23:27 -0400
commit2cf8d6be4191512567dc7498d3163627aacd1cf0 (patch)
tree7d5a6a5da542fac0ca4701122a53516358bfb95a /app/class/obj.class.php
parent175020d9acd5742d3a3cea4aa8e427ecc046b14b (diff)
downloadscrott-2cf8d6be4191512567dc7498d3163627aacd1cf0.tar.gz
scrott-2cf8d6be4191512567dc7498d3163627aacd1cf0.zip
Fix bug in image support
Adds 'image/x-ms-bmp' as an allowed mimetype for images, and is equivalent to 'image/bmp'. The image module is also updated to expect this new type. I found an image of mine that, when uploaded, PHP thought was 'image/bmp', so it was allowed. However, when cropping, PHP though it was 'image/x-ms-bmp' and failed to lookup a loading/writing function. Signed-off-by: Malf Furious <m@lfurio.us>
Diffstat (limited to '')
-rw-r--r--app/class/obj.class.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/class/obj.class.php b/app/class/obj.class.php
index 81a0a27..353d617 100644
--- a/app/class/obj.class.php
+++ b/app/class/obj.class.php
@@ -32,6 +32,7 @@ class obj extends table
"image/png",
"image/gif",
"image/bmp",
+ "image/x-ms-bmp",
);
/*