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:
parent
d130a63e25
commit
abd1d5e599
|
@ -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'));
|
||||
|
|
Loading…
Reference in New Issue