sorry msimplay, I didnt mean to quote your post. I am talking about the whole hack.
Revan
Here's what I use, I think it'd be better
Look for (Line 114)
PHP Code:
$countlog = $DB_site->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "deletionlog");
Replaced by
PHP Code:
// $countlog = $DB_site->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "deletionlog");
$countthreads = $DB_site->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "deletionlog WHERE type = 'thread'");
$countposts = $DB_site->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "deletionlog WHERE type = 'post'");
$totalcount = ($countthreads['total'] + $countposts['total']);
if ($countthreads['total'] > $countposts['total']) {
$numentries = &$countthreads['total'];
}
else $numentries = &$countposts['total'];
line 171, look for
PHP Code:
<td class="thead">' . $vbphrase['total_entries'] . ': ' . $numentries . '
replaced by
PHP Code:
<td class="thead">' . $vbphrase['total_entries'] . ': ' . $totalcount . '
line 207. look for
PHP Code:
$threads = $DB_site->query_first("SELECT COUNT(*) AS threads FROM " . TABLE_PREFIX . "deletionlog WHERE `type`='thread'");
$totalthreads = $threads['threads'];
$iifcalc = iif($page - 1 == 0, 1, (($page - 1) * $perpage) + 1);
$threadpage = $totalthreads - $iifcalc;
$threadpage = $threadpage + $iifcalc;
$threadpage = iif($page - 1 == 0, $numthreads * $page, $threadpage);
replaced by
PHP Code:
$totalthreads = $countthreads['total'];
$iifcalc = iif($page - 1 == 0, 1, (($page - 1) * $perpage) + 1);
$threadpage = ($iifcalc + $perpage - 1);
if ($threadpage > $totalthreads) {$threadpage = $totalthreads;}
Line 269, look for
PHP Code:
$totalposts = $numentries - $numthreads;
$iifcalc = iif($page - 1 == 0, 1, (($page - 1) * $perpage) + 1);
$postpage = $totalposts - $iifcalc;
$postpage = $postpage + $iifcalc;
$postpage = iif($page - 1 == 0, $numposts * $page, $postpage);
print_table_header("$vbphrase[soft_deleted_posts] (Showing post $iifcalc to $postpage, total: $numposts posts)");
replaced by
PHP Code:
$totalposts = $countposts['total'];
$iifcalc = iif($page - 1 == 0, 1, (($page - 1) * $perpage) + 1);
$postpage = ($iifcalc + $perpage - 1);
if ($postpage > $totalposts) {$postpage = $totalposts;}
print_table_header("$vbphrase[soft_deleted_posts] (Showing post $iifcalc to $postpage, total: $totalposts posts)");