Richard,
about this topic
http://forum.snitz.com/forum/topic.asp?TOPIC_ID=52267
when I click on expand/collapse on default page
I got this link
http://www.forums2001.ca/forum/default.asp?Snitz00HideCat1=N&CAT_ID=
this fix look like (made in japan)
Try this
===========
===========
in default.asp
Replace
if Request.QueryString("CAT_ID") <> "" and IsNumeric(Request.QueryString("CAT_ID")) = True then
Cat_ID = cLng(Request.QueryString("CAT_ID"))
end if
With
if Request.QueryString("CAT_ID") <> "" and IsNumeric(Request.QueryString("CAT_ID")) = True then
Cat_ID = cLng(Request.QueryString("CAT_ID"))
HideModeN = "CAT_ID=" & Cat_ID & "&"
HideModeY = "CAT_ID=" & Cat_ID & "&"
else
HideModeN = ""
HideModeY = ""
end if
Replace
<a href=""" & ScriptName & "?" & HideForumCat & "=N&CAT_ID=" & Cat_ID & """>
and
<a href=""" & ScriptName & "?" & HideForumCat & "=Y&CAT_ID=" & Cat_ID & """>
With
<a href=""" & ScriptName & "?" & HideModeN & HideForumCat & "=N"">
and
<a href=""" & ScriptName & "?" & HideModeY & HideForumCat & "=Y"">
===========
===========
For Active Users Mod
In inc_activeusers.asp
Replace
<a href=""" & ScriptName & "?HideActiveUsers=N"">
and
<a href=""" & ScriptName & "?HideActiveUsers=Y"">
With
<a href=""" & ScriptName & "?" & HideModeN & "HideActiveUsers=N"">
and
<a href=""" & ScriptName & "?" & HideModeY & "HideActiveUsers=Y"">