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
This commit is contained in:
Daryl Koopersmith 2012-02-17 19:17:38 +00:00
parent 7eb54b91be
commit 691ca6ead3
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>";
}