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




Zitieren