mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
safe output in _event_date_ (custom responses)
This commit is contained in:
parent
b92cfc6c10
commit
c4d9c0851a
@ -6988,7 +6988,9 @@ function events_get_field_value_by_event_id(
|
||||
if (strpos($value, '_event_date_') !== false) {
|
||||
$value = str_replace(
|
||||
'_event_date_',
|
||||
date($config['date_format'], $event['utimestamp']),
|
||||
io_safe_output(
|
||||
date($config['date_format'], $event['utimestamp'])
|
||||
),
|
||||
$value
|
||||
);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user