Nick Slevkoff
Starting Member
USA
11 Posts |
Posted - 30 May 2001 : 12:42:29
|
First, you guys have done a great job! I downloaded and installed Snitz last night and it is now integrated with my site.
PROBLEM The forum codes (more specifically the url) is case sensitive.
REPRODUCING While posting a message in the forum, rather than using [url="", use [URL="".
WORKAROUND/FIX This can be fixed by modifying the ReplaceUrls function in inc_functions.asp. Basically, add the compare parameter to all of the InStr and Split functions setting that parameter to 1 (text compare).
Another bug spotted in the same routine was the following line:
if (InStr(1, strArray(counter2), c2Tag, 1) > 0) and (InStr(1, strArray(counter2), c1Tag, 1) > 0) then
The "and" should be replaced with "or".
|
|