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: pop_send_to_friend.asp
 Forum Locked  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 17 June 2003 :  04:16:12  Show Profile

pop_send_to_friend.asp


around line #45 find the following:
if Request.QueryString("mode") = "DoIt" then
	Err_Msg = ""

	if (Request.Form("YName") = "") then
		Err_Msg = Err_Msg & "<li>You must enter your name!</li>"
	end if
insert the following directly above the red highlighted line of code:
	if strLogonForMail <> "0" and (MemberID < 1 or isNull(MemberID)) then
		Err_Msg = Err_Msg & "<li>You Must be logged on to send a message</li>"
	end if

so it now looks like this:
if Request.QueryString("mode") = "DoIt" then
	Err_Msg = ""
	
	if strLogonForMail <> "0" and (MemberID < 1 or isNull(MemberID)) then
		Err_Msg = Err_Msg & "<li>You Must be logged on to send a message</li>"
	end if
	if (Request.Form("YName") = "") then 
		Err_Msg = Err_Msg & "<li>You must enter your name!</li>"
	end if

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 05 September 2003 :  19:33:23  Show Profile
fixed in v3.4.04
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.11 seconds. Powered By: Snitz Forums 2000 Version 3.4.07