mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Fix missing closing tag in theme-editor.php, props roganty, fixes #8581
git-svn-id: http://svn.automattic.com/wordpress/trunk@10194 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fe8c666fe2
commit
9bdf2f30b9
@ -96,7 +96,7 @@ default:
|
||||
<?php endif;
|
||||
|
||||
$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">
|
||||
<?php screen_icon(); ?>
|
||||
@ -120,7 +120,7 @@ $desc_header = ( $description != $file_show ) ? "$description</strong> (%s)" : "
|
||||
</div>
|
||||
<div class="tablenav">
|
||||
<div class="alignleft">
|
||||
<big><strong><?php echo sprintf($desc_header, $file_show); ?></big>
|
||||
<big><?php echo sprintf($desc_header, $file_show); ?></big>
|
||||
</div>
|
||||
<br class="clear" />
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user