Merge branch 'master' of https://github.com/savetheinternet/Tinyboard
This commit is contained in:
commit
dc9df2b9b3
@ -996,7 +996,10 @@ 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 ($query->rowcount() < 1 && $page > 1)
|
if ($page == 1 && $query->rowCount() < $config['threads_per_page'])
|
||||||
|
$board['thread_count'] = $query->rowCount();
|
||||||
|
|
||||||
|
if ($query->rowCount() < 1 && $page > 1)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
$threads = array();
|
$threads = array();
|
||||||
@ -1113,10 +1116,13 @@ function getPageButtons($pages, $mod=false) {
|
|||||||
function getPages($mod=false) {
|
function getPages($mod=false) {
|
||||||
global $board, $config;
|
global $board, $config;
|
||||||
|
|
||||||
// Count threads
|
if (isset($board['thread_count'])) {
|
||||||
$query = query(sprintf("SELECT COUNT(`id`) as `num` FROM `posts_%s` WHERE `thread` IS NULL", $board['uri'])) or error(db_error());
|
$count = $board['thread_count'];
|
||||||
|
} else {
|
||||||
$count = current($query->fetch());
|
// Count threads
|
||||||
|
$query = query(sprintf("SELECT COUNT(`id`) FROM `posts_%s` WHERE `thread` IS NULL", $board['uri'])) or error(db_error());
|
||||||
|
$count = $query->fetchColumn();
|
||||||
|
}
|
||||||
$count = floor(($config['threads_per_page'] + $count - 1) / $config['threads_per_page']);
|
$count = floor(($config['threads_per_page'] + $count - 1) / $config['threads_per_page']);
|
||||||
|
|
||||||
if ($count < 1) $count = 1;
|
if ($count < 1) $count = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user