From 585744624d9e9c3a335a1245cc88dde8e16febee Mon Sep 17 00:00:00 2001 From: "BestNa.me Labs" Date: Wed, 9 Mar 2016 22:24:48 +0100 Subject: [PATCH] Go to First Page -> Go to Last Page Fixes a minor glitch in yourls_html_tfooter() in functions-html.php: In the pagination section of the URL table, the 'Go to Last Page'-link has a `title` attribute 'Go to First Page' (one can notice that by hovering it). Should of course be titled 'Go to Last Page'. --- includes/functions-html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions-html.php b/includes/functions-html.php index 9777977..7dffcfa 100644 --- a/includes/functions-html.php +++ b/includes/functions-html.php @@ -312,7 +312,7 @@ function yourls_html_tfooter( $params = array() ) { if( ( $p_end ) < $total_pages ) { $link = yourls_add_query_arg( array_merge( $params, array( 'page' => $total_pages ) ), $base_page ); echo ''; - echo '' . yourls__( 'Last »' ) . ''; + echo '' . yourls__( 'Last »' ) . ''; } ?> -- 2.42.0