Fix mimes empty check

git-svn-id: https://develop.svn.wordpress.org/trunk@12171 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-11-12 05:20:48 +00:00
parent 292e5394a4
commit dbc040136c
1 changed files with 2 additions and 1 deletions

View File

@ -2260,7 +2260,7 @@ function wp_ext2type( $ext ) {
* @return array Values with extension first and mime type.
*/
function wp_check_filetype( $filename, $mimes = null ) {
if ( null === $mimes )
if ( empty($mimes) )
$mimes = get_allowed_mime_types();
$type = false;
$ext = false;
@ -2340,6 +2340,7 @@ function get_allowed_mime_types() {
return $mimes;
}
/**
* Retrieve nonce action "Are you sure" message.
*