[svn] r6179: nemerle/trunk/snippets/blogComments.n
nazgul
svnadmin at nemerle.org
Sun Apr 9 16:39:19 CEST 2006
Log:
Antyspam improvement
Author: nazgul
Date: Sun Apr 9 16:39:17 2006
New Revision: 6179
Modified:
nemerle/trunk/snippets/blogComments.n
Modified: nemerle/trunk/snippets/blogComments.n
==============================================================================
--- nemerle/trunk/snippets/blogComments.n (original)
+++ nemerle/trunk/snippets/blogComments.n Sun Apr 9 16:39:17 2006
@@ -159,8 +159,8 @@
content.IndexOf ("[url]http") != -1 ||
content.IndexOf ("[url=") != -1 || {
mutable count = 0;
- mutable last = 0;
- while (last < content.Length && {last = content.IndexOf ("http"); last != -1 })
+ mutable last = -1;
+ while (last < content.Length && {last = content.IndexOf ("http", last + 1); last != -1 })
count++;
count > 2
}
More information about the svn
mailing list