i tried that., didint work! i editied the shoutbox.php file and searched for $username . this section was the closest to what u asked for
PHP Code:
if (isset($_REQUEST['username']) && $_REQUEST['username'] != '') {
$username = $_REQUEST['username'];
} elseif (isset($_POST['username']) && $_POST['username'] != '') {
$username = $_POST['username'];
}
so i changed it to this
PHP Code:
if (isset($_REQUEST['username']) && $_REQUEST['username'] != '') {
$username = $_REQUEST['username'];
} elseif (isset($_POST['username']) && $_POST['username'] != '') {
$musername = $_POST['musername'];
}
and its still the same