In der shoutbox.php (boxes) mal folgenden Zeilen, so eretzen ->
$shoutbox_nickname = escape($_POST['shoutbox_nickname'],'string');
$shoutbox_nickname = substr($shoutbox_nickname, 0, 15);
->
$shoutbox_nickname = $_SESSION['authname'];
Wenn du das Eingabefeld nicht mehr haben willst, noch diese Zeile mit löschen
echo '<input type="text" size="15" name="shoutbox_nickname" value="'.$shoutbox_VALUE_name.'" onFocus="if (value == \''.$shoutbox_VALUE_name.'\') {value = \'\'}" onBlur="if (value == \'\') {value = \''.$shoutbox_VALUE_name.'\'}" maxlength="15">';