Customize: Ensure that "Change" button appears when there are only 2 themes.

Fixes defect introduced in [35535].

Merges [35943] to the 4.4 branch.
Props igmoweb.
See #34549.
Fixes #35081.

Built from https://develop.svn.wordpress.org/branches/4.4@36065


git-svn-id: http://core.svn.wordpress.org/branches/4.4@36030 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dion Hulse 2015-12-23 01:51:22 +00:00
parent b4f299c6f9
commit 378e246adf
2 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class WP_Customize_Themes_Section extends WP_Customize_Section {
}
?>
<?php if ( count( $this->controls ) > 1 ) : ?>
<?php if ( count( $this->controls ) > 0 ) : ?>
<button type="button" class="button change-theme" tabindex="0"><?php _ex( 'Change', 'theme' ); ?></button>
<?php endif; ?>
</h3>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4.1-alpha-36064';
$wp_version = '4.4.1-alpha-36065';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.