Add missing div in themes.php, props demetris, fixes #8395

git-svn-id: https://develop.svn.wordpress.org/trunk@9921 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2008-11-27 12:13:08 +00:00
parent 16b582e033
commit ecb45c722b

View File

@ -126,12 +126,14 @@ function theme_update_available( $theme ) {
<div class="clear"></div> <div class="clear"></div>
<?php if ( $page_links ) : ?> <?php if ( $page_links ) : ?>
<div class="tablenav">
<div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s&#8211;%s of %s' ) . '</span>%s', <div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s&#8211;%s of %s' ) . '</span>%s',
number_format_i18n( $start + 1 ), number_format_i18n( $start + 1 ),
number_format_i18n( min( $page * $per_page, $theme_total ) ), number_format_i18n( min( $page * $per_page, $theme_total ) ),
number_format_i18n( $theme_total ), number_format_i18n( $theme_total ),
$page_links $page_links
); echo $page_links_text; ?></div> ); echo $page_links_text; ?></div>
</div>
<?php endif; ?> <?php endif; ?>
<?php if ( 1 < $theme_total ) { ?> <?php if ( 1 < $theme_total ) { ?>