Are you using TWTCommish's shoutbox? If so, do this:
Open shoutbox.php
Find:
PHP Code:
if ($type == 'shout' && $comment_submit && trim($message) != '' && $bbuserinfo[userid] > 0) {
Replace with:
PHP Code:
if ($type == 'shout' && $comment_submit && trim($message) != '' && $bbuserinfo[userid] > 0) {
// check max images
if ($maximages!=0) {
$parsedmessage=bbcodeparse($message);
if (countchar($parsedmessage,"<img")>$maximages) {
eval("standarderror(\"".gettemplate("error_toomanyimages")."\");");
exit;
}
}
Satan