You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raise newForumError("Your account has been marked by https://www.stopforumspam.com/. If you believe this is a mistake please contact a moderator. "& supportUrl)
559
-
560
-
whennot defined(skipSpamHeuristics):
561
-
if spamHeuristicsCheck(c, content):
562
-
raise newForumError("Your account has been automatically marked as spam. If you believe this is a mistake please contact a moderator. "& supportUrl)
563
-
564
-
when defined(wordlistSpamCutoff):
565
-
if wordlistSpamCheck(c, content):
566
-
raise newForumError("Your account has been automatically marked as spam. If you believe this is a mistake please contact a moderator. "& supportUrl)
raise newForumError("Your account has been marked by https://www.stopforumspam.com/. If you believe this is a mistake please contact a moderator. "& supportUrl)
600
+
601
+
whennot defined(skipSpamHeuristics):
602
+
if spamHeuristicsCheck(c, content):
603
+
raise newForumError("Your account has been automatically marked as spam. If you believe this is a mistake please contact a moderator. "& supportUrl)
604
+
605
+
when defined(wordlistSpamCutoff):
606
+
if wordlistSpamCheck(c, content):
607
+
raise newForumError("Your account has been automatically marked as spam. If you believe this is a mistake please contact a moderator. "& supportUrl)
608
+
609
609
exec(db, sql"update thread set modified = DATETIME('now') where id = ?",
discard tryExec(db, sql"insert into post_fts(post_fts) values('optimize')")
710
+
discard tryExec(db, sql"insert into post_fts(thread_fts) values('optimize')")
711
+
702
712
whennot defined(skipStopForumSpamCheck):
703
713
if stopForumSpamCheck(c):
704
714
raise newForumError("Your account has been marked by https://www.stopforumspam.com/. If you believe this is a mistake please contact a moderator. "& supportUrl)
0 commit comments