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

git-svn-id: https://develop.svn.wordpress.org/branches/3.4@21966 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-09-24 04:05:40 +00:00
parent 940d6323d3
commit 2fd8ea1631
2 changed files with 4 additions and 2 deletions

View File

@ -193,9 +193,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
?>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '3.4.2';
$wp_version = '3.4.3-alpha';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.