Here is a diff:
diff --git a/include/class.forms.php b/include/class.forms.php
index 19f825c2d..caa8fb7cc 100644
--- a/include/class.forms.php
+++ b/include/class.forms.php
@@ -3973,6 +3973,7 @@ class FileUploadField extends FormField {
}
static function isValidFile($file) {
+ var_dump($file['type'], FileObject::mime_type($file['tmp_name']));die;
// Make sure mime type is valid
if (strcasecmp(FileObject::mime_type($file['tmp_name']),
$file['type']) !== 0)
When you apply these changes, inspect the page and everything like the above, and look at the response you get in the Network tab. The first value will be the mime-type your browser is sending and the second value is what PHP is determining the mime type is (by scanning the file itself).
Cheers.