any wrong with this code?
Code:
$iscredits = false;
if(!in_array($forum['forumid'], explode(',', $vboptions['credit_sysapplied'])))
{
$iscredits = true;
}
^ from fuctions_showthread
and
Code:
// Begin thread Credits
$iscredits = false;
if(!in_array($forum['forumid'], explode(',', $vboptions['credit_sysapplied'])))
{
$iscredits = true;
}
$creditthread = $DB_site->query_first("SELECT * FROM " . TABLE_PREFIX ."thread WHERE threadid = $thread[threadid]");
$creditvote = ceil($creditthread['creditsvote']/$creditthread['totalcreditsvote']);
^ from showthreads.php
these are the codes that I added to the two files. No other changes..