Update customize-controls.php to use new WP_Theme API. see #19910, [20029].

git-svn-id: http://svn.automattic.com/wordpress/trunk@20030 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2012-02-28 21:41:19 +00:00
parent d130a63e25
commit abd1d5e599
1 changed files with 2 additions and 6 deletions

View File

@ -27,12 +27,8 @@ wp_enqueue_style( 'customize-controls' );
do_action( 'customize_controls_enqueue_scripts' );
$theme = get_theme( get_current_theme() );
if ( $theme['Screenshot'] )
$screenshot = $theme['Theme Root URI'] . '/' . $theme['Stylesheet'] . '/' . $theme['Screenshot'];
else
$screenshot = '';
$theme = wp_get_theme();
$screenshot = $theme->get_screenshot( 'absolute' );
// Let's roll.
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));