From 9c24e725505bfbe26b430480365280225d334726 Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@19282 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 fc6aca85a..36dff4115 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;