Skip to content

Commit

Permalink
fix: corrected base URL for pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Sep 26, 2023
1 parent be8a539 commit 9226eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpmyfaq/admin/stat.search.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 9226eed

Please sign in to comment.