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
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, $this->mybb->user['timezone']); $row['timestamp'] .= ' ' . my_date($this->settings['timeformat'], $unixtime, $this->mybb->user['timezone']);
ändere diese in
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);
(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
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, $this->mybb->user['timezone']); $row['timestamp'] .= ' ' . my_date($this->settings['timeformat'], $unixtime, $this->mybb->user['timezone']);
ändere diese in
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);