Turbosport
01-14-2006, 10:00 PM
Just a little quick code hack!
This simply stops short posts from going through the shout filter !
Only 1 edit :D
10 = lengh of post to skip.
FILE = includes/functions_newpost.php
// ###################### Start stopshouting #######################
function fetch_no_shouting_text($text)
{
// stops $text being all UPPER CASE
global $vbulletin;
return iif($vbulletin->options['stopshouting'] AND $text == strtoupper($text) AND strlen($text) >= 10 , ucwords(vbstrtolower($text)), $text);
}
This simply stops short posts from going through the shout filter !
Only 1 edit :D
10 = lengh of post to skip.
FILE = includes/functions_newpost.php
// ###################### Start stopshouting #######################
function fetch_no_shouting_text($text)
{
// stops $text being all UPPER CASE
global $vbulletin;
return iif($vbulletin->options['stopshouting'] AND $text == strtoupper($text) AND strlen($text) >= 10 , ucwords(vbstrtolower($text)), $text);
}