From 86c37ba7a7f259d32e553fd7bd2322c80360b3cf Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@19941 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 1de3d850f..f81738570 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 "; }