Quote:
Originally Posted by Carnage-
mmm true...
i think it should be easy to do thou, just copy the update posts code and change this query:
PHP Code:
$forums = $DB_site->query("
SELECT forumid
FROM " . TABLE_PREFIX . "forum AS forum
WHERE (forum.options & $_FORUMOPTIONS[countposts])
");
i think the following should do it:
PHP Code:
$forums = $DB_site->query("
SELECT forumid
FROM " . TABLE_PREFIX . "forum AS forum
WHERE !(forum.options & $_FORUMOPTIONS[countposts])
");
alternativly you could try manually setting the folowing variable:
$gotforums = '';
to
$gotforums = '1,2,3';
where 1,2 and 3 are the forum ids of the forums you wish to count
|
Good stuff..thanks for that.
I don't really feel comfortable playing around with those things, but if anyone wnats to add this and see if it works for them...