edit messages from form-data
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 1m2s

This commit is contained in:
betty 2026-01-12 11:59:03 +01:00
commit f9df0e1037

View file

@ -137,13 +137,13 @@ function constructMessage()
$message .= "<hr/><p><b>"; $message .= "<hr/><p><b>";
$message .= "Kantone, in denen Sie eine Bewilligung (beantragt) haben"; $message .= "Kantone, in denen Sie eine Bewilligung (beantragt) haben";
$message .= "</b><br/>"; $message .= "</b><br/>";
foreach ( $arrAllCantons as $abbreviation ) // foreach ( $arrAllCantons as $abbreviation )
{ // {
if ( isset(filter_input(INPUT_POST, $abbreviation)) ) // if ( isset(filter_input(INPUT_POST, $abbreviation)) )
{ // {
$message .= filter_input(INPUT_POST, $abbreviation) . "<br/>"; // $message .= filter_input(INPUT_POST, $abbreviation) . "<br/>";
} // }
} // }
$message .= "</p>"; $message .= "</p>";
} }