quote:
Originally posted by Image
And Big Bug With Edit and Delete onclick icon
I dont have these bug on my version
OneWayMule did you fix this Bug?
if not(fixed or found) then
Replace in Admin Guestbook
if Session(strCookieURL & "Approval") <> "15916941253" then
scriptname = split(request.servervariables("SCRIPT_NAME"),"/")
Response.Redirect "admin_login.asp?target=" & scriptname(ubound(scriptname))
end if
With
if Session(strCookieURL & "Approval") <> "15916941253" then
scriptname = split(request.servervariables("SCRIPT_NAME"),"/")
strQS = Request.QueryString
Response.Redirect "admin_login.asp?target=" & Server.URLEncode(scriptname(ubound(scriptname)) & "?" & strQS)
end if
else
line 550 Replace
" Enabled: <input type=""checkbox"" name=""field1e"" value=""1"" " & chkCheckBox("1",strGBField1E,true) & ">" & vbNewLine & _
" Required: <input type=""checkbox"" name=""field1r"" value=""1"" " & chkCheckBox("1",strGBField2Req,true) & ">" & vbNewLine & _
With
" Enabled: <input type=""checkbox"" name=""field1e"" value=""1"" " & chkCheckBox("1",strGBField1E,true) & ">" & vbNewLine & _
" Required: <input type=""checkbox"" name=""field1r"" value=""1"" " & chkCheckBox("1",strGBField1Req,true) & ">" & vbNewLine & _
end if