17.04.2014, 09:07
(17.04.2014, 09:00)MrBrechreiz schrieb: [ -> ]Ist denn die Sommerzeiteinstellung im ACP und im Benutzer-CP berücksichtig worden ?
Ja wenn gepostet wird stimmt die zeit genau nur in der SB nicht.
(17.04.2014, 09:00)MrBrechreiz schrieb: [ -> ]Ist denn die Sommerzeiteinstellung im ACP und im Benutzer-CP berücksichtig worden ?
(17.04.2014, 09:15)MrBrechreiz schrieb: [ -> ]Mit der richtigen GMT Zeit, wird bei mir alles korrekt angezeigt.
// Markup Timestamp
$unixtime = $row['timestamp'];
// MyBB your shitty my_date function can get fucked by a cactus
$row['timestamp'] = my_date($this->settings['dateformat'], $unixtime, $this->mybb->user['timezone']);
$row['timestamp'] .= ' ' . my_date($this->settings['timeformat'], $unixtime, $this->mybb->user['timezone']);
// Markup Timestamp
$unixtime = $row['timestamp'];
// MyBB your shitty my_date function can get fucked by a cactus
$row['timestamp'] = my_date($this->settings['dateformat'], $unixtime);
$row['timestamp'] .= ' ' . my_date($this->settings['timeformat'], $unixtime);
(17.04.2014, 10:10)Jockl schrieb: [ -> ]Ich habe das zwar jetzt nicht bis ins letzte Detail geprüft, aber probiere mal folgendes:
Öffne die Datei inc/plugins/inferno/class_core.php und suche diese Zeilen
ändere diese inPHP-Code:// Markup Timestamp
$unixtime = $row['timestamp'];
// MyBB your shitty my_date function can get fucked by a cactus
$row['timestamp'] = my_date($this->settings['dateformat'], $unixtime, $this->mybb->user['timezone']);
$row['timestamp'] .= ' ' . my_date($this->settings['timeformat'], $unixtime, $this->mybb->user['timezone']);
PHP-Code:// Markup Timestamp
$unixtime = $row['timestamp'];
// MyBB your shitty my_date function can get fucked by a cactus
$row['timestamp'] = my_date($this->settings['dateformat'], $unixtime);
$row['timestamp'] .= ' ' . my_date($this->settings['timeformat'], $unixtime);