Make WordPress Core


Ignore:
Timestamp:
11/10/2012 05:36:37 AM (13 years ago)
Author:
nacin
Message:

Don't allow non-image uploads for custom headers and backgrounds. props kovshenin. fixes #22149.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/custom-background.php

    r22503 r22521  
    356356        check_admin_referer('custom-background-upload', '_wpnonce-custom-background-upload');
    357357        $overrides = array('test_form' => false);
    358         $file = wp_handle_upload($_FILES['import'], $overrides);
     358
     359        $uploaded_file = $_FILES['import'];
     360        $wp_filetype = wp_check_filetype_and_ext( $uploaded_file['tmp_name'], $uploaded_file['name'], false );
     361        if ( ! wp_match_mime_types( 'image', $wp_filetype['type'] ) )
     362            wp_die( __( 'The uploaded file is not a valid image. Please try again.' ) );
     363
     364        $file = wp_handle_upload($uploaded_file, $overrides);
    359365
    360366        if ( isset($file['error']) )
Note: See TracChangeset for help on using the changeset viewer.