Merge pull request #1027 from ssteeltm/fix-paging-hidden

fix pagination hidden
This commit is contained in:
Johnny 2024-09-05 14:19:26 -04:00 committed by GitHub
commit fa7c99fcc5
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 > 10) {
if ($total_found_rows > 5) {
$i = 0;
?>