ist ja minutensache mit phpbb3.
wenn dann der gleiche effekt auftritt, ist eine wichtige funktion serverseits gesperrt.
falls dort aber alles richtig ist, hast du in den board-zeit-generierenden includes des haupt-boards was weg-gepimpt
Code: Alles auswählen
// Zone offset
$zone_offset = $this->timezone + $this->dst;Code: Alles auswählen
if (!isset($date_cache[$format]))
{
// Is the user requesting a friendly date format (i.e. 'Today 12:42')?
$date_cache[$format] = array(
'is_short' => strpos($format, '|'),
'format_short' => substr($format, 0, strpos($format, '|')) . '||' . substr(strrchr($format, '|'), 1),
'format_long' => str_replace('|', '', $format),
'lang' => $this->lang['datetime'],
);
// Short representation of month in format? Some languages use different terms for the long and short format of May
if ((strpos($format, '\M') === false && strpos($format, 'M') !== false) || (strpos($format, '\r') === false && strpos($format, 'r') !== false))
{
$date_cache[$format]['lang']['May'] = $this->lang['datetime']['May_short'];
}
}