Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Bug Reports (Closed)
 (v3.4.03) BUG+FIX: admin_login_short.asp
 Forum Locked  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 28 October 2002 :  06:02:42  Show Profile
admin_login_short.asp
on line #48 find the following:
RequestMethod = Request.ServerVariables("Request_method")
Just below that line (on line #49) insert the following:
strTarget = trim(chkString(request("target"),"SQLString"))


on line #68 find the following:
		if Request("target") = "" then
			Response.Write	"admin_home.asp"
		else
			Response.Write	request("target")
		end if

replace it with this:
		if strTarget = "" then
			Response.Write	"admin_home.asp"
		else
			Response.Write	strTarget
		end if


on line #76 find the following:
		if Request("target") = "" then
			Response.Write	"admin_home.asp"
		else
			Response.Write	request("target")
		end if

replace it with this:
		if strTarget = "" then
			Response.Write	"admin_home.asp"
		else
			Response.Write	strTarget
		end if


on line #95 find the following:
		"      <input type=""hidden"" value=""" & request("target") & """ name=""target"">" & vbNewLine & _

replace it with this:
		"      <input type=""hidden"" value=""" & strTarget & """ name=""target"">" & vbNewLine & _

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 13 February 2003 :  10:36:15  Show Profile
Fixed in v3.4.04

Support Snitz Forums
Go to Top of Page
  Previous Topic Topic Next Topic  
 Forum Locked  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.16 seconds. Powered By: Snitz Forums 2000 Version 3.4.07