There appears to be a problem with the following portion of code in global.php
PHP Code:
if (isset($postid)) {
// viewing post
$postid=verifyid('post',$postid,0);
if ($postid!=0) {
$advert_forumid=$postid['forumid'];
}
}
$advert_forumid appears to be incorrect. If post id is say 92355 and the post is in thread 23352 in forum 24. advert_forumid is set to 9 ... this is wrong and it should be 24.
I got around it for the time being by changing it to the following.
PHP Code:
if (isset($postid) and isset($threadid)) {
// viewing post
$thread=verifyid("thread",$threadid,0,1);
$advert_forumid=$thread['forumid'];
}
This works and the advert_forumid is set to 24 for the above example.
I don't think this fix is correct though, is there a scenaro where postid is set but threadid is not ?