Fix last commit
This commit is contained in:
parent
c2a287cd14
commit
3a8736cdc0
@ -995,7 +995,7 @@ function index($page, $mod=false) {
|
|||||||
$query->bindValue(':threads_per_page', $config['threads_per_page'], PDO::PARAM_INT);
|
$query->bindValue(':threads_per_page', $config['threads_per_page'], PDO::PARAM_INT);
|
||||||
$query->execute() or error(db_error($query));
|
$query->execute() or error(db_error($query));
|
||||||
|
|
||||||
if ($page == 1 && $query->rowCount() <= $config['threads_per_page'])
|
if ($page == 1 && $query->rowCount() < $config['threads_per_page'])
|
||||||
$board['thread_count'] = $query->rowCount();
|
$board['thread_count'] = $query->rowCount();
|
||||||
|
|
||||||
if ($query->rowCount() < 1 && $page > 1)
|
if ($query->rowCount() < 1 && $page > 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user