This modification will stop your users from "shouting" in posts. (Posting with caps-lock on for everything)
Open inc/class_parser.php.
Find:
Add below:
Example:
"OH MY GOD YOU ARE STUPID"
will become:
"Oh my god you are stupid"
-Brandon
Open inc/class_parser.php.
Find:
PHP Code:
// Get rid of cartridge returns for they are the workings of the devil
$message = str_replace("\r", "", $message);
Add below:
PHP Code:
// Caps lock / shouting? Nonono!
if(strtoupper($message) == $message) {
$message = strtolower($message);
$message = ucfirst($message);
}
Example:
"OH MY GOD YOU ARE STUPID"
will become:
"Oh my god you are stupid"
-Brandon