diff options
author | Benny Baumann <BenBE@geshi.org> | 2012-10-31 18:55:51 +0100 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2012-10-31 18:55:51 +0100 |
commit | 7baaa9a0ac611329539a43031ca3d0e81bba2b5f (patch) | |
tree | d8210f8004cc4efbcd73188e1eefe6277c7c21be /pages | |
parent | 53b015bf6782b44e7c69f654734813a64da28a0e (diff) | |
parent | d8f6a8160f62314dc94b9037089193d4ab295c9a (diff) | |
download | cacert-devel-7baaa9a0ac611329539a43031ca3d0e81bba2b5f.tar.gz cacert-devel-7baaa9a0ac611329539a43031ca3d0e81bba2b5f.tar.xz cacert-devel-7baaa9a0ac611329539a43031ca3d0e81bba2b5f.zip |
Merge branch 'bug-860' into release
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/13.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/pages/account/13.php b/pages/account/13.php index e8dad73..c2b7cc5 100644 --- a/pages/account/13.php +++ b/pages/account/13.php @@ -25,18 +25,18 @@ $day = intval(substr($user['dob'], 8, 2)); $body = sprintf(_("Hi %s,"),$user['fname'])."\n\n"; - $body .= _("You receive this automatic mail since you yourself or")."\n"; - $body .= _("someone else looked up your secret questions and answers")."\n"; - $body .= _("for a forgotten password.")."\n\n"; - $body .= _("If it was you who looked up or changed that data, or clicked")."\n"; - $body .= _("through the menu in your account, everything is in best order and")."\n"; - $body .= _("you can ignore this mail.")."\n\n"; - $body .= _("But if you received this mail without a recognisable reason,")."\n"; - $body .= _("there is a danger that an unauthorised person accessed your")."\n"; - $body .= _("account, and you should promptly change your password and your")."\n"; - $body .= _("secret questions and answers.")."\n\n"; + $body .= _("You receive this automatic mail since you yourself or someone ". + "else looked up your secret questions and answers for a forgotten ". + "password.\n\n". + "If it was you who looked up or changed that data, or clicked ". + "through the menu in your account, everything is in best order ". + "and you can ignore this mail.\n\n". + "But if you received this mail without a recognisable reason, ". + "there is a danger that an unauthorised person accessed your ". + "account, and you should promptly change your password and your ". + "secret questions and answers.")."\n\n"; - $body .= _("With kind regards,")."\n\n"._("CAcert Support"); + $body .= _("Best regards")."\n"._("CAcert Support"); sendmail($user['email'], "[CAcert.org] "._("Email Notification"), $body, "support@cacert.org", "", "", "CAcert Support"); ?> |