Skip to content

Commit 04baf35

Browse files
authored
Merge pull request #223 from brandonjp/patch-3
re-correcting laquo to lsaquo in cloud table nav
2 parents 5f40b9d + 6f7bba0 commit 04baf35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/php/cloud/list-table-shared-ops.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ function cloud_lts_pagination( string $which, string $source, int $total_items,
182182
$page_links[] = '<span class="tablenav-pages-navspan button disabled" aria-hidden="true">&laquo;</span>';
183183
} else {
184184
$page_links[] = sprintf(
185-
'<a class="first-page button" href="%s"><span class="screen-reader-text">%s</span><span aria-hidden="true">&lsaquo;</span></a>',
185+
'<a class="first-page button" href="%s"><span class="screen-reader-text">%s</span><span aria-hidden="true">&laquo;</span></a>',
186186
esc_url( remove_query_arg( $source . '_page', $current_url ) ),
187187
esc_html__( 'First page', 'code-snippets' )
188188
);
@@ -192,7 +192,7 @@ function cloud_lts_pagination( string $which, string $source, int $total_items,
192192
$page_links[] = '<span class="tablenav-pages-navspan button disabled" aria-hidden="true">&lsaquo;</span>';
193193
} else {
194194
$page_links[] = sprintf(
195-
'<a class="prev-page button" href="%s"><span class="screen-reader-text">%s</span><span aria-hidden="true">&laquo;</span></a>',
195+
'<a class="prev-page button" href="%s"><span class="screen-reader-text">%s</span><span aria-hidden="true">&lsaquo;</span></a>',
196196
esc_url( add_query_arg( $source . '_page', max( 1, $current - 1 ), $current_url ) ),
197197
esc_html__( 'Previous page', 'code-snippets' )
198198
);

0 commit comments

Comments
 (0)