@ erwin : here you are with the timezoneoffset modification
for each user to see the shouts in their time zone :
In shoutbox.php, look for :
PHP Code:
$date = $get["date"];
and in index.php , look for :
PHP Code:
$date = $shout_row["date"];
and add just after each :
PHP Code:
$date = date("Y")."-".substr($date,4,2)."-".substr($date,1,2)." ".substr($date,7,2).":".substr($date,10,2);
$date = date("[d/m|H:i]",strtotime($date)+($bbuserinfo['timezoneoffset']*3600));
and here you are


... maybe you are not used to my frenchie
way of writing datetimes, you could modify the way it is written
by changing the "[d/m|H:i]" part and looking that page from the
php manual if you need :
http://www.php.net/manual/en/function.date.php