I did update the chatbox.php earlier.
Holy macaroni! I got it working!
Changed the following:
Code:
if ($tagarounduser) {
$tagopen = "<$tagarounduser>";
$tagclose = "</$tagarounduser>";
}
To:
Code:
if ($tagarounduser) {
$tagopen = "<span title=\"$time\"><$tagarounduser>";
$tagclose = "</$tagarounduser></span>";
}
And the following from:
Code:
echo "\n".'<span id="shout'.$shout['shoutid'].'">['.$time.'] '.$tagopen.$username.$del."$tagclose: ".$parsed.'<br /></span>';
To:
Code:
echo "\n".'<span id="shout'.$shout['shoutid'].'"> '.$tagopen.$username.$del."$tagclose: ".$parsed.'<br /></span>';
So now the time of the message is only shown when holding the mouse over the username. I'm happy!