From 668a8500073330f87277caacb48393d126b0d470 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 14 Nov 2011 21:24:49 +0000 Subject: [PATCH] Use hellip instead of poor man's elipsis in pagination links. props georgestephanis, fixes #19182. git-svn-id: https://develop.svn.wordpress.org/trunk@19282 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index fc6aca85a9..36dff4115b 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -1927,7 +1927,7 @@ function paginate_links( $args = '' ) { $page_links[] = "$n_display"; $dots = true; elseif ( $dots && !$show_all ) : - $page_links[] = '...'; + $page_links[] = '' . __( '…' ) . ''; $dots = false; endif; endif;