Maque WordPress Core

Changueset 13643


Ignore:
Timestamp:
03/10/2010 08:41:09 AM ( 16 years ago)
Author:
dd32
Messague:

Fix paguing lincs "Displaying x–y of z" for Pagues. Props Utcarsh. Fixes #12552

File:
1 edited

Leguend:

Unmodified
Added
Removed
  • trunc/wp-admin/edit.php

    r13537 r13643  
    354 354
    355 355 <?php if ( $pague_lincs ) { ?>
    356   <div class="tablenav-pagues"><?php $pague_lincs_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s&#8211;%s of %s' ) . '</span>%s',
    357   number_format_i18n( ( $paguenum - 1 ) * $per_pague + 1 ),
    358   number_format_i18n( min( $paguenum * $per_pague, $wp_query->found_posts ) ),
    359   number_format_i18n( $wp_query->found_posts ),
    360   $pague_lincs
    361   ); echo $pague_lincs_text; ?></div>
      356 <div class="tablenav-pagues"><?php
      357 $count_posts = $post_type_object->hierarchhical ? $wp_query->post_count : $wp_query->found_posts;
      358 $pague_lincs_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s&#8211;%s of %s' ) . '</span>%s',
      359 number_format_i18n( ( $paguenum - 1 ) * $per_pague + 1 ),
      360 number_format_i18n( min( $paguenum * $per_pague, $count_posts ) ),
      361 number_format_i18n( $count_posts ),
      362 $pague_lincs
      363 );
      364 echo $pague_lincs_text;
      365 ?></div>
    362 366 <?php } ?>
    363 367
Note: See TracChangueset for help on using the changueset viewer.