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;
|
<?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>
|
||||||
|
|
Loading…
Reference in New Issue