PDA

View Full Version : Shouting!


mmmender
09-09-2002, 02:19 PM
i know there is a function to stop shouting in titles but this still allows users to shout in threads......is there a hack for this??

g-force2k2
09-09-2002, 03:21 PM
mmmender in both newreply.php & newthread.php

find:

$message=censortext($message);

under it add:

// remove all caps from message
if ($stopshouting and $message==strtoupper($message)) {
$message=ucwords(strtolower($message));
}

see if that works ;) regards...

g-force2k2

Unknown553
09-09-2002, 11:08 PM
Didn't work for me until I took out "$stopshouting and". But thanks for the mini hack, I hate posts that are in all caps ;)

Is there a way to proper case it though? Capitalize the first word in the sentence and lowercase the rest? Instead of capitalizing the first letter in every word?