I got:
Code:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/.../forumdisplay.php on line 217
Code:
// get permission to view forum
$_permsgetter_ = 'forumdisplay';
$forumperms = fetch_permissions($forumid);
if (!($forumperms & CANVIEW))
{
print_no_permission();
}
if (($vboptions['facffa_checkforumactivity'] AND in_array($foruminfo['forumid'], $vboptions['facffa_checkforums'])))
{
// forum activity check
$definedtime = ($vboptions['facffa_checkforumactivitytime'] * 86400);
$limit = TIMENOW - $definedtime;
$recentpostcount = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM " . TABLE_PREFIX . "post
WHERE userid = $bbuserinfo['userid'] <- Line 217
AND dateline >= $limit
");
if ($recentpostcount['total'] < $vboptions['facffa_checkforumactivityposts'])
{
eval(print_standard_error('facffa_checknotenoughposts'));
}
}