Sorry i didnt think of that, or try it, Try this
replace the code in the php file with
PHP Code:
if ($bbuserinfo['usergroupid']!= 0) {
//Start recent attachments by Trix
$trix = $DB_site->query("SELECT attachmentid, dateline, filename FROM attachment WHERE dateline < " . TIME() ." ORDER BY dateline DESC LIMIT 5");
while ($recentattachment = $DB_site->fetch_array($trix))
{
eval('$latestattachments .= "' . fetch_template('recent_attachments') . '";');
}
//End recent attachments by Trix
}
Its just a rough guess but i assume it will work