Add missing div in themes.php, props demetris, fixes #8395
git-svn-id: http://svn.automattic.com/wordpress/trunk@9921 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
de4fe69772
commit
14ebe03af3
|
@ -126,12 +126,14 @@ function theme_update_available( $theme ) {
|
|||
<div class="clear"></div>
|
||||
|
||||
<?php if ( $page_links ) : ?>
|
||||
<div class="tablenav">
|
||||
<div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s',
|
||||
number_format_i18n( $start + 1 ),
|
||||
number_format_i18n( min( $page * $per_page, $theme_total ) ),
|
||||
number_format_i18n( $theme_total ),
|
||||
$page_links
|
||||
); echo $page_links_text; ?></div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if ( 1 < $theme_total ) { ?>
|
||||
|
|
Loading…
Reference in New Issue