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 /includes | |
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 'includes')
-rw-r--r-- | includes/account.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/includes/account.php b/includes/account.php index ee5d3f8..4faa0e5 100644 --- a/includes/account.php +++ b/includes/account.php @@ -124,9 +124,9 @@ exit; } $row = mysql_fetch_assoc($res); - $body = sprintf(_("Hi %s,"),$_SESSION['profile']['fname'])."\n"; - $body .= _("You are receiving this email because you or someone else")."\n"; - $body .= _("has changed the default email on your account.")."\n\n"; + $body = sprintf(_("Hi %s,"),$_SESSION['profile']['fname'])."\n\n"; + $body .= _("You are receiving this email because you or someone else ". + "has changed the default email on your account.")."\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); @@ -1352,9 +1352,9 @@ where `id`='".$_SESSION['profile']['id']."'"); echo '<h3>', _("Pass Phrase Changed Successfully"), '</h3>', "\n"; echo _("Your Pass Phrase has been updated and your primary email account has been notified of the change."); - $body = sprintf(_("Hi %s,"),$_SESSION['profile']['fname'])."\n"; - $body .= _("You are receiving this email because you or someone else")."\n"; - $body .= _("has changed the password on your account.")."\n"; + $body = sprintf(_("Hi %s,"),$_SESSION['profile']['fname'])."\n\n"; + $body .= _("You are receiving this email because you or someone else ". + "has changed the password on your account.")."\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); @@ -2613,9 +2613,9 @@ printf(_("The password for %s has been updated successfully in the system."), sanitizeHTML($row['email'])); - $body = sprintf(_("Hi %s,"),$row['fname'])."\n"; - $body .= _("You are receiving this email because a CAcert administrator")."\n"; - $body .= _("has changed the password on your account.")."\n"; + $body = sprintf(_("Hi %s,"),$row['fname'])."\n\n"; + $body .= _("You are receiving this email because a CAcert administrator ". + "has changed the password on your account.")."\n\n"; $body .= _("Best regards")."\n"._("CAcert.org Support!"); |