Remove extraneous tag. Props ionfish. fixes #5890

git-svn-id: https://develop.svn.wordpress.org/trunk@6960 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-02-21 21:49:48 +00:00
parent 1559aa2d32
commit e6672666be
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ if ($allowed_files) :
<?php foreach($themes[$theme]['Template Files'] as $template_file) :
$description = get_file_description($template_file);
$template_show = basename($template_file);
$filedesc = ( $description != $template_file ) ? "$description <span class='nonessential'>($template_show)</span></small>" : "$description";
$filedesc = ( $description != $template_file ) ? "$description <span class='nonessential'>($template_show)</span>" : "$description";
$filedesc = ( $template_file == $file ) ? "<span class='highlight'>$description <span class='nonessential'>($template_show)</span></span>" : $filedesc;
?>
<li><a href="theme-editor.php?file=<?php echo "$template_file"; ?>&amp;theme=<?php echo urlencode($theme) ?>"><?php echo $filedesc ?></a></li>