From 595284f6995ad3b90b506eeb35a11404fd913080 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 6 Sep 2013 17:04:36 +0000 Subject: [PATCH] Mark the hooks in custom-background.php as duplicates. * image_size_names_choose should be documented in wp-includes/media.php * wp_create_file_in_uploads should be documented in custom-header.php see #25229. git-svn-id: https://develop.svn.wordpress.org/trunk@25283 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/custom-background.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/custom-background.php b/src/wp-admin/custom-background.php index c9ba796463..2691408e50 100644 --- a/src/wp-admin/custom-background.php +++ b/src/wp-admin/custom-background.php @@ -386,7 +386,8 @@ if ( current_theme_supports( 'custom-background', 'default-color' ) ) $thumbnail = wp_get_attachment_image_src( $id, 'thumbnail' ); set_theme_mod('background_image_thumb', esc_url_raw( $thumbnail[0] ) ); - do_action('wp_create_file_in_uploads', $file, $id); // For replication + //duplicate_hook + do_action( 'wp_create_file_in_uploads', $file, $id ); // For replication $this->updated = true; } @@ -411,6 +412,7 @@ if ( current_theme_supports( 'custom-background', 'default-color' ) ) public function wp_set_background_image() { if ( ! current_user_can('edit_theme_options') || ! isset( $_POST['attachment_id'] ) ) exit; $attachment_id = absint($_POST['attachment_id']); + //duplicate_hook $sizes = array_keys(apply_filters( 'image_size_names_choose', array('thumbnail' => __('Thumbnail'), 'medium' => __('Medium'), 'large' => __('Large'), 'full' => __('Full Size')) )); $size = 'thumbnail'; if ( in_array( $_POST['size'], $sizes ) )