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: MSN Name shows incorrectly
 Forum Locked  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

bengriffiths
New Member

United Kingdom
51 Posts

Posted - 07 March 2003 :  05:07:29  Show Profile  Visit bengriffiths's Homepage
If a user has two dots in their MSN address, pop profile will cut off the last bit.

ie.: name@msn.co.uk
becomes: name@msn.co

Looked through code and seen why (the split command only takes the three parts (name, domain, 1st domain extension) but am so tired, cannot work out how to count amount of fields in a split....

So it's over to you

ben

http://www.fiatforum.com

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 07 March 2003 :  12:54:00  Show Profile
in pop_profile.asp on line #342 find this line of code:

					strtag3 = partss(1)
and replace it with the following:
					strtag3 = ""
					for xmsn = 1 to ubound(partss)
						if strtag3 <> "" then strtag3 = strtag3 & "."
						strtag3 = strtag3 & partss(xmsn)
					next

Then in pop_messengers.asp on line #144 find this line of code:

		strtag3 = partss(1)
and replace it with the following:
		strtag3 = ""
		for xmsn = 1 to ubound(partss)
			if strtag3 <> "" then strtag3 = strtag3 & "."
			strtag3 = strtag3 & partss(xmsn)
		next
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 17 June 2003 :  08:37:14  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.15 seconds. Powered By: Snitz Forums 2000 Version 3.4.07