Fixing trim threads bug

This commit is contained in:
tslocum 2010-11-29 16:26:34 -08:00
parent a88d0283f7
commit b36b446d9a
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ function deletePostByID($id) {
function trimThreads() {
global $tinyib;
if ($tinyib['maxthreads'] > 0) {
$result = mysql_query("SELECT `id` FROM `b_posts` WHERE `parent` = 0 ORDER BY `bumped` DESC LIMIT " . $tinyib['maxthreads']. ", 10");
$result = mysql_query("SELECT `id` FROM `" . $GLOBALS['mysql_posts_table'] . "` WHERE `parent` = 0 ORDER BY `bumped` DESC LIMIT " . $tinyib['maxthreads']. ", 10");
while ($post = mysql_fetch_assoc($result)) {
deletePostByID($post['id']);
}