diff options
author | Janis Streib <janis@dogcraft.de> | 2015-01-20 23:11:19 +0100 |
---|---|---|
committer | Janis Streib <janis@dogcraft.de> | 2015-01-20 23:11:19 +0100 |
commit | f4640b86d408433a0aea7ff9665e12f6f204c38d (patch) | |
tree | 6c7fe84b71b519d8b0939fec64adeae2ebb18e3c | |
parent | 4274f646ae105b9f5df0176fc8a59c1751cc54e3 (diff) | |
download | cacert-devel-f4640b86d408433a0aea7ff9665e12f6f204c38d.tar.gz cacert-devel-f4640b86d408433a0aea7ff9665e12f6f204c38d.tar.xz cacert-devel-f4640b86d408433a0aea7ff9665e12f6f204c38d.zip |
FIX: Better Mailtext for SE password lookup notification mail.
-rw-r--r-- | pages/account/43.php | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/pages/account/43.php b/pages/account/43.php index 3c044ed..e19c3fb 100644 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -328,14 +328,10 @@ if(intval($_REQUEST['userid']) > 0) { <? } else { $body = sprintf(_("Hi %s,"),$row['fname'])."\n\n"; - $ip = anonymizeIp($_SERVER['REMOTE_ADDR']); - if($ip === false) { - $ip = _("Error"); - } - $body .= sprintf(_("You receive this automatic mail since you yourself or someone ". - "else looked up your secret questions and answers for a forgotten ". + $body .= sprintf(_("You receive this automatic mail since a supporter ". + "looked up your secret questions and answers for a forgotten ". "password.\n\n". - "Network: %s\nTime: %s\n\n". + "Time: %s\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". @@ -343,7 +339,6 @@ if(intval($_REQUEST['userid']) > 0) { "there is a danger that an unauthorised person accessed your ". "account, and you should promptly change your password and your ". "secret questions and answers."), - $ip, date("Y-m-d H:i:s T"))."\n\n"; $body .= _("Best regards")."\n"._("CAcert Support"); |