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
This commit is contained in:
koopersmith 2012-02-17 19:17:38 +00:00
parent 7167c79364
commit 86c37ba7a7
1 changed files with 2 additions and 2 deletions

View File

@ -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 "
<tr $theme>
<td>$title</td>
<td>$name</td>
<td>$description</td>
</tr>";
}