From 6505b0e6d98f365dafbfc8fde659a468c5dd4e30 Mon Sep 17 00:00:00 2001 From: Widee Date: Thu, 9 Oct 2025 17:11:13 +0200 Subject: [PATCH] Paginator->counter's first param is string The Paginator->counter method accept only string on 1rst parameter, not an array --- en/views/helpers/paginator.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/en/views/helpers/paginator.rst b/en/views/helpers/paginator.rst index 19810632b6..058c62de9a 100644 --- a/en/views/helpers/paginator.rst +++ b/en/views/helpers/paginator.rst @@ -546,10 +546,10 @@ navigation, also supplied by the PaginationHelper:: The wording output by the counter() method can also be customized using special markers:: - Paginator->counter([ - 'format' => 'Page {{page}} of {{pages}}, showing {{current}} records out of - {{count}} total, starting on record {{start}}, ending on {{end}}' - ]) ?> + Paginator->counter( + 'Page {{page}} of {{pages}}, showing {{current}} records out of + {{count}} total, starting on record {{start}}, ending on {{end}}' + ) ?> .. _paginator-helper-multiple: