mirror of https://github.com/itflow-org/itflow
fix pagination hidden
fix pagination hidden, when number of rows is smaller than 10
This commit is contained in:
parent
0f6ed69008
commit
b3e6039ec5
|
|
@ -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;
|
||||
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue