And to make only the first letter of a sentence uppercase you could change this:
PHP Code:
if ($bbcode == strtoupper($bbcode)) {
$bbcode = ucwords(strtolower($bbcode));
}
to something like this:
PHP Code:
if ($bbcode == strtoupper($bbcode)) {
$bbarr = explode ('.', $bbcode);
$bbcode = "";
foreach ($bbarr as $bbsentence) {
$bbcode .= ucwords(strtolower($bbsentence));
}
}
Untested...