mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-12 01:50:48 +01:00
Fixed the when-there-are-no-posts-there-are-no-pages bug
This commit is contained in:
parent
55f082a421
commit
afcb4703f4
@ -477,7 +477,9 @@
|
||||
|
||||
$count = current($query->fetch());
|
||||
$count = floor(($config['threads_per_page'] + $count - 1) / $config['threads_per_page']);
|
||||
|
||||
|
||||
if($count < 1) $count = 1;
|
||||
|
||||
$pages = Array();
|
||||
for($x=0;$x<$count && $x<$config['max_pages'];$x++) {
|
||||
$pages[] = Array(
|
||||
|
Loading…
Reference in New Issue
Block a user