Quote:
Originally Posted by msimplay
i repaired the error by using repair tables however its weird that using the none physical delete seems to be now deleting threads
|
Total Entries: 1830
You've messed up with the counting part:
Page1:
Soft Deleted Threads (Showing thread 1 to 14, total: 14 threads)
Soft Deleted Posts (Showing post 1 to 15, total: 15 posts)
Page2
Soft Deleted Posts (Showing post 16 to 1830, total: 15 posts)
Page3:
Soft Deleted Posts (Showing post 31 to 1830, total: 15 posts)
also, here you have
$countlog = $DB_site->query_first("SELECT COUNT(*) AS total FROM " . TABLE_PREFIX . "deletionlog");
$numentries = &$countlog['total'];
$numpages = ceil($numentries / $perpage);
your $countlog is post+thread counts
$perpage is actually post perpage AND thread perpage.
=> $countlog / $perpage is NOT correct $numpages.
You have to get
$countpost and $countthread
if $countpost > $countthread => $numentries = $countpost, else $entries = $countthread
otherwise, if you have more than one page of thread and post deleted, the last pages will give empty results.