quote:
Originally posted by arzuna
This is really a great mod and exactly what I was looking for!
One question though...
Does it implement different time limiting options for Edit and Delete(I think it doesn't but maybe I'm wrong).
Is there a way to do this too? (through a new "strDeleteTime" for instance?)
Arzuna they use the same time. Try this. It uses "strEditTime" as an on/off switch for both.
In config.asp add strDeleteTime
Dim strEditPost, strEditTime, strDeleteTime
and
strEditPost = Application(strCookieURL & "STREDITPOST")
strEditTime = Application(strCookieURL & "STREDITTIME")
strDeleteTime = Application(strCookieURL & "STRDELETETIME")
In pop_delete.asp change this line
dim intTime : intTime = int(strEditTime * -86400)
to this
dim intTime : intTime = int(strDeleteTime * -86400)
I think that will get it.