#11739 Fixed date_format

This commit is contained in:
Daniel Maya 2023-08-03 10:56:28 +02:00
parent ae22b99835
commit 59ef20e214
1 changed files with 6 additions and 0 deletions

View File

@ -2128,6 +2128,12 @@ function config_process_config()
if (!isset($config['date_format'])) {
config_update_value('date_format', 'F j, Y, g:i a');
} else {
$config['date_format'] = str_replace(
' ',
' ',
$config['date_format']
);
}
if (!isset($config['event_view_hr'])) {