Fix nesting on themes.php when there are no options links to display for the current theme. props sterlo. fixes #21980.

git-svn-id: https://develop.svn.wordpress.org/trunk@21965 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-09-24 04:03:15 +00:00
parent 327697fc6d
commit c547bca2fe
1 changed files with 3 additions and 1 deletions

View File

@ -198,9 +198,11 @@ $customize_title = sprintf( __( 'Customize “%s”' ), $ct->display('Na
<li><?php echo $option; ?></li>
<?php endforeach; ?>
</ul>
<?php
endif; // options
?>
</div>
<?php
endif; // options
endif; // options || edit_theme_options
?>