Quote:
Originally Posted by kall
Well, duh.
If *you* want to make an Update Counters thing for it, go ahead.
I can't find where it is I claim that it works retrospectively anywhere in this thread, so I don't 'need to add' anything.
|
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