From 691ca6ead33642b2b2a8228ea0bd0d3db7ad3bb1 Mon Sep 17 00:00:00 2001 From: Daryl Koopersmith Date: Fri, 17 Feb 2012 19:17:38 +0000 Subject: [PATCH] Don't unintentionally override the global variable. props ocean90, see #20062. git-svn-id: https://develop.svn.wordpress.org/trunk@19941 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/themes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/themes.php b/wp-admin/themes.php index 1de3d850fb..f81738570c 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -237,13 +237,13 @@ if ( current_user_can('edit_themes') && count( $broken_themes ) ) { natcasesort($theme_names); foreach ($theme_names as $theme_name) { - $title = $broken_themes[$theme_name]['Title']; + $name = $broken_themes[$theme_name]['Title']; $description = $broken_themes[$theme_name]['Description']; $theme = ('class="alternate"' == $theme) ? '' : 'class="alternate"'; echo " - $title + $name $description "; }