In the first post on any thread - users are not getting an edit icon for posts they have done....
I have narrowed down the code to this part of topic.asp I think :
' ### Poll Mod - Replaces original if (AdminAllowed = 1 or TMember_ID = MemberID) then ..... end if block ### if Poll_IsPoll = 1 and trim(strActivePoll) = Topic_ID and AdminAllowed <> 1 then ' Do nothing elseif Poll_IsPoll = 1 then if (AdminAllowed = 1 or TMember_ID = Member_ID) or (strNoCookies = "1") then if ((Cat_Status <> 0) and (Forum_Status <> 0) and (Topic_Status <> 0)) or (AdminAllowed = 1) then Response.Write " <a href=""post.asp?poll=1&method=EditTopic&REPLY_ID=" & Topic_ID & "&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & """>" & getCurrentIcon(strIconEditTopic,"Edit Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine end if end if else if (AdminAllowed = 1 or TMember_ID = MemberID) then if (Cat_Status <> 0 and Forum_Status <> 0 and Topic_Status <> 0) or (AdminAllowed = 1) then Response.Write " <a href=""post.asp?" & ArchiveLink & "method=EditTopic&REPLY_ID=" & Topic_ID & "&TOPIC_ID=" & Topic_ID & "&FORUM_ID=" & Forum_ID & """>" & getCurrentIcon(strIconEditTopic,"Edit Topic","align=""absmiddle"" hspace=""6""") & "</a>" & vbNewLine end if end if end if ' ############################################################################################################
has anyone got any suggestions what maybe wrong with this section ???