Changeset 31116 for trunk/src/wp-admin/custom-background.php
- Timestamp:
- 01/09/2015 09:06:13 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/custom-background.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/custom-background.php
r30885 r31116 126 126 */ 127 127 public function init() { 128 if ( ! current_user_can('edit_theme_options') ) 128 $page = add_theme_page( __( 'Background' ), __( 'Background' ), 'edit_theme_options', 'custom-background', array( $this, 'admin_page' ) ); 129 if ( ! $page ) { 129 130 return; 130 131 $this->page = $page = add_theme_page(__('Background'), __('Background'), 'edit_theme_options', 'custom-background', array($this, 'admin_page')); 132 133 add_action("load-$page", array($this, 'admin_load')); 134 add_action("load-$page", array($this, 'take_action'), 49); 135 add_action("load-$page", array($this, 'handle_upload'), 49); 136 137 if ( $this->admin_header_callback ) 138 add_action("admin_head-$page", $this->admin_header_callback, 51); 131 } 132 133 $this->page = $page; 134 135 add_action( "load-$page", array( $this, 'admin_load' ) ); 136 add_action( "load-$page", array( $this, 'take_action' ), 49 ); 137 add_action( "load-$page", array( $this, 'handle_upload' ), 49 ); 138 139 if ( $this->admin_header_callback ) { 140 add_action( "admin_head-$page", $this->admin_header_callback, 51 ); 141 } 139 142 } 140 143 … … 428 431 429 432 $uploaded_file = $_FILES['import']; 430 $wp_filetype = wp_check_filetype_and_ext( $uploaded_file['tmp_name'], $uploaded_file['name'] , false);433 $wp_filetype = wp_check_filetype_and_ext( $uploaded_file['tmp_name'], $uploaded_file['name'] ); 431 434 if ( ! wp_match_mime_types( 'image', $wp_filetype['type'] ) ) 432 435 wp_die( __( 'The uploaded file is not a valid image. Please try again.' ) );
Note: See TracChangeset
for help on using the changeset viewer.