remove HTML escape

it's already happening in event.php
This commit is contained in:
Max Mehl 2019-02-19 17:01:21 +01:00
parent 1366d86ec0
commit 47e790caba
Signed by: max.mehl
GPG Key ID: 2704E4AB371E2E92

View File

@ -62,7 +62,7 @@ function send_registration_mail($from, $to) {
'startdate' => $_POST['startdate'],
'enddate' => $_POST['enddate'],
'description' => $_POST['description'],
'url' => htmlspecialchars($_POST['url']),
'url' => $_POST['url'],
'location' => $_POST['location'],
'city' => $_POST['city'],
'countrycode' => explode('|', $_POST['country'])[0],