Cool mod... EZ to install and run... had a problem tho in ACP -> vbShout in that when I tried to position the shoutbox under 'what's going on' nothing showed up, so I took the advice of earlier posts and manually placed $Shoutbox where I wanted.
I did some revisions to the timestamp tho, here's the result:
Code:
function buildTime($time = TIMENOW)
{
global $vbulletin;
$date = vbdate($vbulletin->options['dateformat'], $time, $vbulletin->options['yestoday']);
$date = strtolower($date);
$time = vbdate($vbulletin->options['timeformat'], $time, $vbulletin->options['yestoday']);
$result = "Posted: ".$date." @ ".$time;
return $result;
}
To me it looks a little better than the default :P
BTW if you want to change the height of the box you should use the vbShout option under VB Options in Admin Control Panel.
Thanks!