slub / slub_events

EXT:slub_events
GNU General Public License v3.0
2 stars 14 forks source link

Date Format #33

Closed SiMackL closed 5 years ago

SiMackL commented 5 years ago

Für User ungewohnte Datumsanzeige in den Meldungen bei der Speicherung einer Veranstaltung, (statt 27.03.2019 03/27/19) in HookPreProcessing.php Zeile 262: $formatedTimeString = gmstrftime('%a, %x %H:%M:%S', $dt->format('U')); possible: $formatedTimeString = gmstrftime('%d.%m.%Y %H:%M', $dt->format('U')); Thanks Silvia

albig commented 5 years ago

That's not an issue of slub_events but the locale setting seems to be wrong.

The '%x' format means "Preferred date representation based on locale, without the time."

So please checkt the backend language and if PHP locales for de_DE are available on the server.