io nel mio forum ho fatto questa semplice modifica nel file includes/functions.php
sostituite la funzione "create_date()" con questa:
[code:1:d8a8f79131]// INIZIO EVCZ MOD annullo il timezone
//
// Create date/time from format and timezone
//
function create_date($format, $gmepoch, $tz)
{
$tz=0;
global $board_config, $lang;
static $translate;
if ( empty($translate) && $board_config['default_lang'] != 'english' )
{
@reset($lang['datetime']);
while ( list($match, $replace) = @each($lang['datetime']) )
{
$translate[$match] = $replace;
}
}
return ( !empty($translate) ) ? strtr(@date($format, $gmepoch + (3600 * $tz)), $translate) : @gmdate($format, $gmepoch + (3600 * $tz));
}
// FINE EVCZ MOD annullo il timezone[/code:1:d8a8f79131]
in questo modo qualsiasi cosa venga impostata a livello di profilo utente viene ignorata e viene stampata a soltanto l'ora perfettamente regolata relativa al proprio paese (consigliata solo per i forums monolingua... )
There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...