Why are my private messages subjected to the profanity filter?

Status
Not open for further replies.

darthgoat

Well-Known Member
Title says it all.

Surely I can swear in my private messages.

That is something that should be user configurable IMO. In fact it would be great to have a global profanity filter that can be turned off and on by the user.
 
Old Three Stooges routine...

Judge to Curly, "Do you swear?"

Curly - "No, but I know all the woids." :D


I may be wrong, but I think the profanity filter is across the board... we can't pick and choose which part of the system it works on, and which part it doesn't.
 
<div class='quotetop'>(darthgoat @ Jun 30 2006, 02:36 PM) [snapback]1271617[/snapback]</div>
Ok just checkin. :)
[/b]

Nope, I just checked all the filter settings and automated setup and I didn't see any flag to skip PMs when filtering or for individuals as a whole. It's either all on or off...
 
<div class='quotetop'>(Lord_Gita @ Jul 1 2006, 12:40 PM) [snapback]1272137[/snapback]</div>
and I didn't see any flag to skip PMs [/b]

Easy enough hack, to simply not filter PMs for bad words

In the 'messenger.php' file in the 'sources/action_public/' directory

Find this line about 1/4 the way down
Code:
$this->parser->bypass_badwords = intval($this->ipsclass->member['g_bypass_badwords']);

Replace with
Code:
$this->parser->bypass_badwords = 1;

Or and alternate method make it look like this...
Code:
// $this->parser->bypass_badwords = intval($this->ipsclass->member['g_bypass_badwords']);

$this->parser->bypass_badwords = 1;

Just put the // in front of the original line to "comment" it out (// voids that line from being executed) then you can then easily reverse the hack by simply moving the // marks down to the hacked line instead...

I have not tested this, simply because I'm too lazy, but it should work without a problem...
 
Oh, @#$%. off. :p

<div class='quotetop'>(exoray @ Jul 3 2006, 04:42 AM) [snapback]1272606[/snapback]</div>
<div class='quotetop'>(Lord_Gita @ Jul 1 2006, 12:40 PM) [snapback]1272137[/snapback]
and I didn't see any flag to skip PMs [/b]

Easy enough hack, to simply not filter PMs for bad words

In the 'messenger.php' file in the 'sources/action_public/' directory

Find this line about 1/4 the way down
Code:
$this->parser->bypass_badwords = intval($this->ipsclass->member['g_bypass_badwords']);

Replace with
Code:
$this->parser->bypass_badwords = 1;

Or and alternate method make it look like this...
Code:
// $this->parser->bypass_badwords = intval($this->ipsclass->member['g_bypass_badwords']);

$this->parser->bypass_badwords = 1;

Just put the // in front of the original line to "comment" it out (// voids that line from being executed) then you can then easily reverse the hack by simply moving the // marks down to the hacked line instead...

I have not tested this, simply because I'm too lazy, but it should work without a problem...
[/b][/quote]
 
Status
Not open for further replies.
Back
Top