Previous Thread
Next Thread
Print Thread
Rate Thread
med2004 #262641 11/20/2003 1:13 PM
Joined: Sep 2003
Posts: 488
Code Monkey
Code Monkey
Joined: Sep 2003
Posts: 488
I added a tweak to this which allows spaces to be completely ignored when comparing a badsubject string with the actual subject string.

It's pretty useful for preventing swearing in the subject line when a poster tries to add his own random spaces in order to fool the system

ORIGINAL:

//Subject
$badsubject = @file("{$config['path']}/filters/badsubject");
if (!is_array($badsubject)) {$badsubject = @file("{$config['phpurl']}/filters/badsubject");}
while (list($linenum,$line) = each($badsubject)) {
if (preg_match("/^#/",$line)) {continue;}
chop ($line);
if (strstr(strtolower($Subject),strtolower($line))) {$html -> not_right($ubbt_lang['BAD_SUBJECT'],$Cat);}
}
//Subject end

TWEAK:

//Subject
$badsubject = @file("{$config['path']}/filters/badsubject");
if (!is_array($badsubject)) {$badsubject = @file("{$config['phpurl']}/filters/badsubject");}
while (list($linenum,$line) = each($badsubject)) {
if (preg_match("/^#/",$line)) {continue;}
$line = chop ($line);
if (strstr(strtolower(trim(eregi_replace(' ', '', $Subject))),strtolower($line))) {$html -> not_right($ubbt_lang['BAD_SUBJECT'],$Cat);}
}
//Subject end

Sponsored Links
Entire Thread
Subject Posted By Posted
Bad Subjects ghubbell 11/12/2003 6:52 PM
Re: Bad Subjects ghubbell 11/13/2003 8:54 PM
Re: Bad Subjects ghubbell 11/14/2003 6:13 AM
Re: Bad Subjects Twisty 11/20/2003 8:13 PM
Re: Bad Subjects ghubbell 11/20/2003 8:47 PM
Re: Bad Subjects Twisty 11/20/2003 9:20 PM
Re: Bad Subjects Twisty 11/20/2003 9:42 PM
Re: Bad Subjects ghubbell 11/20/2003 10:05 PM

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
Nettomo
Nettomo
Germany, Bremen
Posts: 417
Joined: November 2001
Forum Statistics
Forums63
Topics37,574
Posts293,926
Members13,850
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20240506)