i get the error below what im i doin wrong guys help me
Warnung: Wrong parameter count for implode() in /member.php (Zeile 499)
Fatal error: Call to a member function on a non-object in /kunden/137092_81737/www.e-paylas.de/forum/member.php on line 501
editted code
Code:
// THREADS
// By assassingod
// Dont forget to change the variables on line 394
$limit = '5'; // Enter the number of maximum threads you want to be displayed
$forumids = implode (78,75,76 ) ;
$getthreads = $DB_site->query("
SELECT threadid,title,dateline
FROM " . TABLE_PREFIX ."thread
WHERE postuserid = '$userinfo[userid]' AND forumid NOT IN ('$forumids')
ORDER BY dateline DESC
LIMIT $limit
");
original code
Code:
// THREADS
// By assassingod
// Dont forget to change the variables on line 394
$limit = '5'; // Enter the number of maximum threads you want to be displayed
$forumids = implode ("', '", get_noaccess_forumids()) ;
$getthreads = $DB_site->query("
SELECT threadid,title,dateline
FROM " . TABLE_PREFIX ."thread
WHERE postuserid = '$userinfo[userid]' AND forumid NOT IN ('$forumids')
ORDER BY dateline DESC
LIMIT $limit
");
while($threads = $DB_site->fetch_array($getthreads))
{
exec_switch_bg();
$threads['date'] = vbdate($vboptions['dateformat'],$threads['dateline']);
$threads['time'] = vbdate($vboptions['timeformat'],$threads['dateline']);
eval('$usersthreads .= "' . fetch_template('memberinfo_usersthreads') . '";');
}