4 Zeilen anpassen, (/content/sm_addons/shoutbox.php)

81 -> Löschen
PHP-Code:
$_POST['text'] = str_replace('%''%%'trim(utf8_decode($_POST['text']))); 
89 -> INSERT QUERY durch diesen ersetzen
PHP-Code:
db_query('INSERT INTO `'.$db_prefix.'_sm_shoutbox` (`from`, `time`, `text`) VALUES (%d, %d, "%s")',$_SESSION['uid'],time(),$_POST['text']); 
96 -> INSERT QUERY durch diesen ersetzen
PHP-Code:
db_query('INSERT INTO `'.$db_prefix.'_sm_shoutbox_reload` (`uid`, `time`) VALUES ('.$_SESSION['uid'].', '.(time()+$sbconfig['shoutbox_verguetung_reload']).')'); 
108 -> INSERT QUERY durch diesen ersetzen
PHP-Code:
db_query('INSERT INTO `'.$db_prefix.'_sm_shoutbox` (`from`, `time`, `text`) VALUES (0, %d, "%s")',time(),$_POST['text']);