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 Discussions (General)
 (v3.4.03) Bug? : inc_header.asp
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

GauravBhabu
Advanced Member

4288 Posts

Posted - 21 September 2002 :  17:42:33  Show Profile
The statements in red below


if Instr(strPageBGImageURL,"/") > 0 or Instr(strPageBGImageURL,"\") > 0 then
	strTmpPageBGImageURL = strPageBGImageURL
else
	strTmpPageBGImageURL = strImageUrl & strPageBGImageURL
end if


should be like as shown below:


if Instr(strPageBGImageURL,"/") > 0 or Instr(strPageBGImageURL,"\") > 0 then
	strTmpPageBGImageURL = " background=" & strPageBGImageURL
else
	strTmpPageBGImageURL = " background=" & strImageUrl & strPageBGImageURL
end if

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 21 September 2002 :  17:57:44  Show Profile
in v3.4.03 the section of code that defines the strTmpPageBGImageURL looks like this:

if strPageBGImageURL = "" then
	strTmpPageBGImageURL = ""
elseif Instr(strPageBGImageURL,"/") > 0 or Instr(strPageBGImageURL,"\") > 0 then
	strTmpPageBGImageURL = " background=""" & strPageBGImageURL & """"
else
	strTmpPageBGImageURL = " background=""" & strImageUrl & strPageBGImageURL & """"
end if

it has been this way since v3.4.02
Go to Top of Page

GauravBhabu
Advanced Member

4288 Posts

Posted - 21 September 2002 :  18:44:50  Show Profile
You are right! When I updated to 3.4.02/03 I did not replace the inc_header.asp. My Mistake.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.12 seconds. Powered By: Snitz Forums 2000 Version 3.4.07