Compare commits

..

No commits in common. "67f58e195f708584cdb83a1c77ce8efaf583c91d" and "c5206adf640358d3022fce98d39b7565b4f0b404" have entirely different histories.

View file

@ -134,40 +134,29 @@ function constructMessage()
if ( ! isset($organisation) && $lang == "DE" )
{
$arrServiceTyps = [ "SOM", "PSY", "AÜP" ];
$strServiceTyps = "";
$message .= "<hr/><p><b>";
$message .= "Leistungen, die Sie anbieten";
$message .= "</b><br/>";
foreach ( $arrServiceTyps as $abbreviation )
{
if (isset( $_POST[$abbreviation]) )
{
$strServiceTyps .= $_POST[$abbreviation] . "<br/>";
$message .= $_POST[$abbreviation] . "<br/>";
}
}
if ( $strServiceTyps != "" )
{
$message .= "<hr/><p><b>";
$message .= "Leistungen, die Sie anbieten";
$message .= $strServiceTyps;
$message .= "</b><br/>";
$message .= "</p>";
}
$message .= "</p>";
$arrAllCantons = [ "AG", "AI", "AR", "BE", "BL", "BS", "FR", "GE", "GL", "GR", "JU", "LU", "NE", "NW", "OW", "SG", "SH", "SO", "SZ", "TG", "UR", "VD", "VS", "ZG", "ZH" ];
$strCantons = "";
$message .= "<hr/><p><b>";
$message .= "Kantone, in denen Sie eine Bewilligung (beantragt) haben";
$message .= "</b><br/>";
foreach ( $arrAllCantons as $abbreviation )
{
if (isset( $_POST[$abbreviation]) )
{
$strCantons .= $_POST[$abbreviation] . "<br/>";
$message .= $_POST[$abbreviation] . "<br/>";
}
}
if ( $strCantons != "" )
{
$message .= "<hr/><p><b>";
$message .= "Kantone, in denen Sie eine Bewilligung (beantragt) haben";
$message .= "</b><br/>";
$message .= $strCantons;
$message .= "</p>";
}
$message .= "</p>";
}
$modulpop2 = filter_input(INPUT_POST, 'modulpop2');