Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 685

[Tutorial] Banning CAPSLOCK / shouting in posts

$
0
0
This modification will stop your users from "shouting" in posts. (Posting with caps-lock on for everything)

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

Viewing all articles
Browse latest Browse all 685

Trending Articles