Make WordPress Core


Ignore:
Timestamp:
12/12/2018 11:04:17 PM (6 years ago)
Author:
jeremyfelt
Message:

Media: Improve verification of MIME file types.

Merges [43988] to the 4.7 branch.

Location:
branches/4.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.7

  • branches/4.7/tests/phpunit/tests/functions.php

    r40403 r43991  
    10621062                'big5.jpg',
    10631063                array(
    1064                     'ext' => 'jpg',
    1065                     'type' => 'image/jpeg',
     1064                    'ext' => false,
     1065                    'type' => false,
    10661066                    'proper_filename' => false,
    10671067                ),
     
    10711071                DIR_TESTDATA . '/export/crazy-cdata.xml',
    10721072                'crazy-cdata.xml',
     1073                array(
     1074                    'ext' => false,
     1075                    'type' => false,
     1076                    'proper_filename' => false,
     1077                ),
     1078            ),
     1079            // Non-image file not allowed even if it's named like one.
     1080            array(
     1081                DIR_TESTDATA . '/export/crazy-cdata.xml',
     1082                'crazy-cdata.jpg',
     1083                array(
     1084                    'ext' => false,
     1085                    'type' => false,
     1086                    'proper_filename' => false,
     1087                ),
     1088            ),
     1089            // Non-image file not allowed if it's named like something else.
     1090            array(
     1091                DIR_TESTDATA . '/export/crazy-cdata.xml',
     1092                'crazy-cdata.doc',
    10731093                array(
    10741094                    'ext' => false,
Note: See TracChangeset for help on using the changeset viewer.