From ad5a3736e6992409c05e8ce3d8e67de7f3b4325c Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 19 Mar 2012 17:15:30 +0000 Subject: [PATCH] Fix copy-paste issue. see #20249. git-svn-id: https://develop.svn.wordpress.org/trunk@20213 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index bd5222c8e9..9d5ed95aa5 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -1583,7 +1583,7 @@ function _remove_theme_support( $feature ) { unset( $GLOBALS['custom_image_header'] ); break; - case 'custom-header' : + case 'custom-background' : $support = get_theme_support( 'custom-background' ); remove_action( 'wp_head', $support[0]['callback'] ); remove_action( 'admin_menu', array( $GLOBALS['custom_background'], 'init' ) );