OK to this line you need to add the active column name.
PHP Code:
FROM:
$polldatetime = $DB_site->query_first("SELECT dateline, timeout from poll where pollid = $thread[pollid];");
TO:
$polldatetime = $DB_site->query_first("SELECT dateline, timeout,active from poll where pollid = $thread[pollid];");
That will enable you to do this conditional check and output or similar...
PHP Code:
if($polldatetime['active']==0 || $thread[open]==0) {
$thread[typeprefix]="<b><font color=#567688>Closed Poll:</b></font> ";
}
else
$thread[typeprefix]=$pollthreadprefix;
Hope that helps.
Regards