Update pagination.php

makes more sense 5 because its the minimum page to set
This commit is contained in:
Hugo Sampaio 2024-09-04 18:03:39 -03:00 committed by GitHub
parent b3e6039ec5
commit bb12b02099
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
$total_found_rows = $num_rows[0];
$total_pages = ceil($total_found_rows / $user_config_records_per_page);
if ($total_found_rows > 1) {
if ($total_found_rows > 5) {
$i = 0;
?>