From f4659c7f766872ba821b74758444e97a4d16cd31 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 14 Nov 2011 23:56:18 +0000 Subject: [PATCH] Check is_array() against get_themes() in get_theme(). props cgrymala, see #19244. git-svn-id: https://develop.svn.wordpress.org/trunk@19287 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index c76414ac23..b132364b4b 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -496,7 +496,7 @@ function get_theme_roots() { function get_theme($theme) { $themes = get_themes(); - if ( array_key_exists($theme, $themes) ) + if ( is_array( $themes ) && array_key_exists( $theme, $themes ) ) return $themes[$theme]; return null;