OK, forum.asp
Find this code @ Line 524:
' DEM --> Added code for topic moderation
if Topic_Status = 2 then
UnApprovedFound = "Y"
Response.Write getCurrentIcon(strIconFolderUnmoderated,"Topic Not Moderated","hspace=""0""") & "</a>" & vbNewline
elseif Topic_Status = 3 then
HeldFound = "Y"
Response.Write getCurrentIcon(strIconFolderHold,"Topic on Hold","hspace=""0""") & "</a>" & vbNewline
' DEM --> end of code Added for topic moderation
else
if isevent="1" then
Response.Write getCurrentIcon(strIconEvent,"","")
elseif ispoll="1" then
Response.Write getCurrentIcon(strIconPoll,"","")
else
Response.Write ChkIsNew(Topic_LastPost)
end if
end if
The bit in red is the one that displays the poll icon in the left column. If you haven't got the event calendar mod then make this last bit look like this:
' DEM --> end of code Added for topic moderation
else
if ispoll="1" then
Response.Write getCurrentIcon(strIconPoll,"","")
else
Response.Write ChkIsNew(Topic_LastPost)
end if
Good luck!