I was trying to make a simple edit to inc_header so that the "Members" link for
admins would point to "members.asp?method=lastheredatedesc" rather than
just members.asp...basically just to save me a step since I check that alot.
I changed the code to the following (around line 500) but get a syntax error at the if statement:
(added lines in red)
Response.Write " |" & vbNewline & _
if mlev = 4 then
Response.Write " <a href=""members.asp?method=lastheredatedesc""" & dWStatus("Current members of these forums...") & " tabindex=""-1""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
else
Response.Write " <a href=""members.asp""" & dWStatus("Current members of these forums...") & " tabindex=""-1""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
end if
Response.Write " |" & vbNewline & _
" <a href=""search.asp"
Any ideas?