fix pagination hidden

fix pagination hidden, when number of rows is smaller than 10
This commit is contained in:
Hugo Sampaio 2024-09-04 17:37:20 -03:00
parent 0f6ed69008
commit b3e6039ec5
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 > 10) {
if ($total_found_rows > 1) {
$i = 0;
?>