and this one is for the newattatchemnt.php im not sure if this is correct either. if theres anything you can help me with ide appreciate it. or is it that this addon isnt going to work for my obard?
PHP Code:
eval('$parentattach .= "' . fetch_template('newpost_attachmentbit', 0, 0) . '";');
// Begin Download Credit System
if($vboptions['credit_mode'])
{
// check if the system apply to only certain forums
if(empty($vboptions['credit_sysapplied']) OR in_array($foruminfo['forumid'], explode(',', $vboptions['credit_sysapplied'])))
{
$totalcredits = $attachcount * $vboptions['credit_perattach'];
$DB_site->query_first("UPDATE " . TABLE_PREFIX . "user
SET credits = credits + $totalcredits
WHERE userid = $bbuserinfo[userid]
");
}
}
// End Download Credit System
}
}