Compare commits

..

No commits in common. "db7a8fc006484807e9ef3723583f3807bf87c57b" and "8ee2306cb20a3ca99c3caca155aff7bea4d8b431" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -21,8 +21,8 @@ enableRobotsTXT = true
########################### Deployment ############################# ########################### Deployment #############################
[params] [params]
# set to "development" or "production". This deploys the site to the correct environment and sets the robot.txt to disallow all pages when in development mode. # set to "development" or "production". This deploys the site to the correct environment and sets the robot.txt to disallow all pages when in development mode.
environment = "production" # environment = "production"
#environment = "development" environment = "development"
# set to true to enable captcha on the form # set to true to enable captcha on the form
useCaptcha = true useCaptcha = true

View file

@ -212,7 +212,7 @@ function constructMessage()
if (!empty($anmerkung)) if (!empty($anmerkung))
{ {
$message .= "<hr/><p><b>"; $message .= "<hr/><p><b>";
$message .= ( $lang == "FR" ? "Remarque: " : "Ihre Bemerkung: "); $message .= ( $lang == "FR" ? "Remarque : " : "Ihre Bemerkung: ");
$message .= "</b><br/>" . $anmerkung . "<br/></p>"; $message .= "</b><br/>" . $anmerkung . "<br/></p>";
} }