Da hast du richtig gelesenTuxman hat geschrieben:3.0.4-Kompatibilität gegeben?
Ich las kürzlich Zweifel.
Gibt Schwierigkeiten in der includes/session.php
Code: Alles auswählen
// Show date <= 1 hour ago as 'xx min ago'
Code: Alles auswählen
// This will determine the correct DST setting for every date, should a user wish for automatic detection
$date_cache[$format]['zone_offset'] = ($this->data['user_dst'] == DST_AUTO) ? $this->timezone + date('I', $gmepoch) * 3600 : $this->timezone + $this->dst;
Meinst Du diese Abfrage? Da musst Du einen Fehler gemacht haben, die hat nichts mir SQL zu tun.Bettina hat geschrieben:Hallo,
ich habe diese Date Abfrage gemacht und dann kommt:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'date('I')' at line 1
was heißt das???
gruß Tina
Das Problem habe ich auch, solange bei mir aut automatisch steht, habe ich MEZ + 2 Stunden.MartectX hat geschrieben:Also wie Du zu den zwei Stunden kommst, ist sehr merkwürdig. Du wirst wohl den Einbau noch einmal kontrollieren müssen.Bettina hat geschrieben:bei mir ist jetzt wenn ich mich als Admin anmelde, immernoch eine Stunde später und wenn ich mich als normaler Nutzer anmelde ist es auch zwei Stunden später.
Das verstehe ich jetzt nicht so ganz ...MartectX hat geschrieben:Änderungen für phpBB 3.0.4
ÖFFNE includes/session.php
FINDEFÜGE EIN, DAVORCode: Alles auswählen
// Show date <= 1 hour ago as 'xx min ago'
Dies ersetzt die letzte Änderung in includes/session.php bis Version 1.0.5 (das große Codestück, das auszutauschen war).Code: Alles auswählen
// This will determine the correct DST setting for every date, should a user wish for automatic detection $date_cache[$format]['zone_offset'] = ($this->data['user_dst'] == DST_AUTO) ? $this->timezone + date('I', $gmepoch) * 3600 : $this->timezone + $this->dst;
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file /includes/session.php on line 2071: strtr(): The second argument is not an array.
Code: Alles auswählen
return strtr(@gmdate(str_replace('|', '', $format), $gmepoch + $this->timezone + $dstemp), $lang_dates);