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

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;
?>