From 9226eed2f0016016b4911f743100897c9e36daea Mon Sep 17 00:00:00 2001 From: Thorsten Rinne Date: Tue, 26 Sep 2023 19:11:17 +0200 Subject: [PATCH] fix: corrected base URL for pagination --- phpmyfaq/admin/stat.search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpmyfaq/admin/stat.search.php b/phpmyfaq/admin/stat.search.php index 7b839d4d50..92c9efb2fa 100644 --- a/phpmyfaq/admin/stat.search.php +++ b/phpmyfaq/admin/stat.search.php @@ -90,7 +90,7 @@ // Pagination options $options = [ - 'baseUrl' => $faqConfig->getDefaultUrl() . $request->getRequestUri(), + 'baseUrl' => $request->getUri(), 'total' => is_countable($searchesList) ? count($searchesList) : 0, 'perPage' => $perPage, 'pageParamName' => 'page',