diff --git a/web/ajax/event.php b/web/ajax/event.php index c96038ec9..f56361043 100644 --- a/web/ajax/event.php +++ b/web/ajax/event.php @@ -113,7 +113,7 @@ if ( canView('Events') or canView('Snapshots') ) { $exportFileName = isset($_REQUEST['exportFileName']) ? $_REQUEST['exportFileName'] : ''; if (!$exportFileName) $exportFileName = 'Export'.(isset($_REQUEST['connkey'])?$_REQUEST['connkey']:''); - $exportFileName = preg_replace('/[^\w\-\.\(\):]+/', '', $exportFileName); + $exportFileName = preg_replace('/[^\p{L}\p{N}\-\.\(\)]/u', '', $exportFileName); $exportIds = []; if (!empty($_REQUEST['eids'])) {