prevent shouting lowercasing all Instead Of Doing This
by
11 Jul 2005
if you have "prevent shouting" on, vb will capitalize the first letter of words. to make it go all lower case, open functions_newpost.php, find Code:
return iif($vbulletin->options['stopshouting'] AND $text == strtoupper($text), ucwords(vbstrtolower($text)), $text); Code:
return iif($vbulletin->options['stopshouting'] AND $text == strtoupper($text), vbstrtolower($text), $text); |
Similar Mods
Prevent shouting in usernames. | vBulletin 3.0 Full Releases |