From 59ef20e214baba6de3ba6720afee18738b0962b9 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 3 Aug 2023 10:56:28 +0200 Subject: [PATCH] #11739 Fixed date_format --- pandora_console/include/functions_config.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index afc0b41017..1b871d3c93 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -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'])) {