From 29db5c9ed3207ab0276da1ab40f7901494fbb7d1 Mon Sep 17 00:00:00 2001 From: Guillaume AGNIERAY Date: Tue, 21 Nov 2023 23:47:59 +0100 Subject: [PATCH] Use icons instead of html entities on icon buttons --- galette/lib/Galette/Core/Pagination.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/galette/lib/Galette/Core/Pagination.php b/galette/lib/Galette/Core/Pagination.php index fad1fbf6c..fa8644494 100644 --- a/galette/lib/Galette/Core/Pagination.php +++ b/galette/lib/Galette/Core/Pagination.php @@ -274,13 +274,13 @@ abstract class Pagination if ($this->current_page != 1) { $paginate .= $this->getLink( - '<<', + '', $this->getHref(1), preg_replace("(%i)", $next, _T("First page")) ); $paginate .= $this->getLink( - '<', + '', $this->getHref($previous), preg_replace("(%i)", $previous, _T("Previous page (%i)")) ); @@ -308,13 +308,13 @@ abstract class Pagination } if ($this->current_page != $this->pages) { $paginate .= $this->getLink( - '>', + '', $this->getHref($next), preg_replace("(%i)", $next, _T("Next page (%i)")) ); $paginate .= $this->getLink( - '>>', + '', $this->getHref($this->pages), preg_replace("(%i)", $this->pages, _T("Last page (%i)")) ); -- 2.39.2