diff options
author | Michael Tänzer <neo@nhng.de> | 2012-10-02 23:21:54 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2012-10-02 23:21:54 +0200 |
commit | 2542114702338ecf1611841efb175ba0bf138441 (patch) | |
tree | c323fa9be42a624974a890056273d8803bc6ef6b | |
parent | 81d8360c64b95172ebf0abbe08849dfca212bad0 (diff) | |
download | cacert-devel-2542114702338ecf1611841efb175ba0bf138441.tar.gz cacert-devel-2542114702338ecf1611841efb175ba0bf138441.tar.xz cacert-devel-2542114702338ecf1611841efb175ba0bf138441.zip |
bug 1091: Fix line endings and add note to write to support on abuse
Signed-off-by: Michael Tänzer <neo@nhng.de>
-rw-r--r-- | www/wot.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/www/wot.php b/www/wot.php index 8767c56..2878534 100644 --- a/www/wot.php +++ b/www/wot.php @@ -442,7 +442,7 @@ $iecho= "c"; where `to`='".$user['id']."' group by `to` HAVING SUM(`points`) > 0")); if($points > 0) { - $my_translation = L10n::get_translation();
+ $my_translation = L10n::get_translation(); L10n::set_translation($user['language']); $subject = "[CAcert.org] ".sprintf(_("Message from %s"), @@ -458,9 +458,11 @@ $iecho= "c"; $body .= $_REQUEST['message']."\n\n"; $body .= "------------------------------------------------\n\n"; $body .= _("Please note, that this is NOT a message on behalf ". - "of CAcert but another user.")."\n\n"; + "of CAcert but another CAcert community member. If ". + "you suspect that the contact form might have been ". + "abused, please write to support@cacert.org")."\n\n"; $body .= _("Best regards")."\n"; - $body .= _("CAcert Support Team"); + $body .= _("Your CAcert Community"); sendmail($user['email'], $subject, $body, $_SESSION['profile']['email'], //from |