Hi Teck:
i sent you the newthread.php. Exaclty where do i look to see if articleid is present in the thread table?
Hooolala:
In the readme file, it tells you specifically what to edit. Here is the section:
Quote:
STEP 2
Open newthread.php file (located in /forum folder) and perform the code change listed below.
FIND:
$postid=$DB_site->insert_id();
BELOW, ADD:
if (in_array($foruminfo['forumid'], explode(',', $articleforum))) {
$DB_site->query("UPDATE thread SET articleid='$postid' WHERE threadid='$threadid'");
}
Save the file.
|