i think you would get type mismatches here try this code:
PHP Code:
$newthreads = '';
if ( $activenewthread )
{
if ( $dothreads = $DB_site->query_first("
SELECT COUNT(*) AS total
FROM thread
WHERE $iforumperms AND dateline>$bbuserinfo[lastvisit]
") and !empty( $dothreads['total'] ) )
{
$count['threads'] = intval( $dothreads['total'] );
$count['threads'] = iif ( $count['threads'] > 0 , numer_format($count['threads']) , 'No' );
$pluralthread = iif ( $count['threads']!=1 , 's' , '' );
}
}