diff options
author | Janis Streib <janis@dogcraft.de> | 2015-01-14 00:59:35 +0100 |
---|---|---|
committer | Janis Streib <janis@dogcraft.de> | 2015-01-14 01:01:11 +0100 |
commit | 4274f646ae105b9f5df0176fc8a59c1751cc54e3 (patch) | |
tree | 29ad7a0c7d4e590177ac7b9121dda5a39a75c511 | |
parent | e3d9f1d9c7bbdbe3ca7c6bcf84837ba690e0cf61 (diff) | |
download | cacert-devel-4274f646ae105b9f5df0176fc8a59c1751cc54e3.tar.gz cacert-devel-4274f646ae105b9f5df0176fc8a59c1751cc54e3.tar.xz cacert-devel-4274f646ae105b9f5df0176fc8a59c1751cc54e3.zip |
FROMAT: If-Block in 13.php (see bug #612)
-rw-r--r-- | pages/account/13.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/account/13.php b/pages/account/13.php index c982a2d..b82f474 100644 --- a/pages/account/13.php +++ b/pages/account/13.php @@ -28,8 +28,9 @@ if($showdetails){ $body = sprintf(_("Hi %s,"),$user['fname'])."\n\n"; $ip = anonymizeIp($_SERVER['REMOTE_ADDR']); - if($ip === false) + 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 ". "password.\n\n". |