From 58a2811377f847d0e454e997dd954af6c93226d2 Mon Sep 17 00:00:00 2001 From: ADmad Date: Tue, 7 Oct 2025 13:41:34 +0530 Subject: [PATCH] Fix paging related docs Paging params are no longer stuffed into the request instance. --- en/views/cells.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/en/views/cells.rst b/en/views/cells.rst index 5c48db28f5..b5c01f71ee 100644 --- a/en/views/cells.rst +++ b/en/views/cells.rst @@ -234,10 +234,6 @@ messages could look like:: ] ); - // Set the paging params as a request attribute for use the PaginatorHelper - $paging = $paginator->getPagingParams() + (array)$this->request->getAttribute('paging'); - $this->request = $this->request->withAttribute('paging', $paging); - $this->set('favorites', $results); } }