mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 12:50:28 +00:00
Use ndash for number range, props demetris, fixes #8088
git-svn-id: https://develop.svn.wordpress.org/trunk@9565 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -666,7 +666,7 @@ class WP_User_Search {
|
||||
'add_args' => $args
|
||||
) );
|
||||
if ( $this->paging_text ) {
|
||||
$this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s-%s of %s' ) . '</span>' . __( '%s' ),
|
||||
$this->paging_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>' . __( '%s' ),
|
||||
number_format_i18n( ( $this->page - 1 ) * $this->users_per_page + 1 ),
|
||||
number_format_i18n( min( $this->page * $this->users_per_page, $this->total_users_for_query ) ),
|
||||
number_format_i18n( $this->total_users_for_query ),
|
||||
|
||||
Reference in New Issue
Block a user