Fix missing closing tag in theme-editor.php, props roganty, fixes #8581

git-svn-id: https://develop.svn.wordpress.org/trunk@10194 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2008-12-12 08:19:10 +00:00
parent f083ebca6a
commit 45a50d9f72
1 changed files with 2 additions and 2 deletions

View File

@ -96,7 +96,7 @@ default:
<?php endif; <?php endif;
$description = get_file_description($file); $description = get_file_description($file);
$desc_header = ( $description != $file_show ) ? "$description</strong> (%s)" : "%s"; $desc_header = ( $description != $file_show ) ? "<strong>$description</strong> (%s)" : "%s";
?> ?>
<div class="wrap"> <div class="wrap">
<?php screen_icon(); ?> <?php screen_icon(); ?>
@ -120,7 +120,7 @@ $desc_header = ( $description != $file_show ) ? "$description</strong> (%s)" : "
</div> </div>
<div class="tablenav"> <div class="tablenav">
<div class="alignleft"> <div class="alignleft">
<big><strong><?php echo sprintf($desc_header, $file_show); ?></big> <big><?php echo sprintf($desc_header, $file_show); ?></big>
</div> </div>
<br class="clear" /> <br class="clear" />
</div> </div>