Strict comparisons for the $allowed arg for wp_get_themes(). Otherwise 'network' does == true. see #20103.
git-svn-id: http://svn.automattic.com/wordpress/trunk@20053 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
57f8d7715f
commit
71aa5ca72a
|
@ -56,9 +56,9 @@ function wp_get_themes( $args = array() ) {
|
|||
|
||||
if ( is_multisite() && null !== $args['allowed'] ) {
|
||||
if ( $allowed = $args['allowed'] ) {
|
||||
if ( 'network' == $allowed )
|
||||
if ( 'network' === $allowed )
|
||||
$themes = array_intersect_key( $themes, WP_Theme::get_allowed_on_network( $args['blog_id'] ) );
|
||||
elseif ( 'site' == $allowed )
|
||||
elseif ( 'site' === $allowed )
|
||||
$themes = array_intersect_key( $themes, WP_Theme::get_allowed_on_site( $args['blog_id'] ) );
|
||||
else
|
||||
$themes = array_intersect_key( $themes, WP_Theme::get_allowed( $args['blog_id'] ) );
|
||||
|
|
Loading…
Reference in New Issue