From b57da5a92a2e477c4f5a010a9730a1c9f817c571 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 29 Feb 2012 23:04:25 +0000 Subject: [PATCH] Strict comparisons for the $allowed arg for wp_get_themes(). Otherwise 'network' does == true. see #20103. git-svn-id: https://develop.svn.wordpress.org/trunk@20053 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index dbe9671fd5..fcc1f61553 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -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'] ) );