diff options
author | INOPIAE <inopiae@cacert.org> | 2014-02-23 12:16:27 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2014-02-23 12:16:27 +0100 |
commit | f2e2938666127a8636ac7770a1cfdb089124528b (patch) | |
tree | bb81dbcb57ebd036d97524116a988492ea0052f6 /CommModule | |
parent | 96cb65e5c64d471c2c47713b63ddcd946bda2ff0 (diff) | |
download | cacert-devel-f2e2938666127a8636ac7770a1cfdb089124528b.tar.gz cacert-devel-f2e2938666127a8636ac7770a1cfdb089124528b.tar.xz cacert-devel-f2e2938666127a8636ac7770a1cfdb089124528b.zip |
bug 597: added some '' to the mail textbug-597
Diffstat (limited to 'CommModule')
-rwxr-xr-x | CommModule/client.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CommModule/client.pl b/CommModule/client.pl index 4cff23a..c337d94 100755 --- a/CommModule/client.pl +++ b/CommModule/client.pl @@ -1030,7 +1030,7 @@ sub RevokeCerts($$) $dbh->do("update `$table` set `revoked`=now() where `id`='".$row{'id'}."'"); my $body = _("Hi")." $user{fname},\n\n"; - $body .= sprintf(_("Your certificate for %s with the serial number '%s' has been revoked, as per request.")."\n\n", $row{'CN'}, $row{'serial'}); + $body .= sprintf(_("Your certificate for '%s' with the serial number '%s' has been revoked, as per request.")."\n\n", $row{'CN'}, $row{'serial'}); $body .= _("Best regards")."\n"._("CAcert.org Support!")."\n\n"; SysLog("Sending email to ".$user{"email"}."\n") if($debug); sendmail($user{email}, "[CAcert.org] "._("Your certificate"), $body, "support\@cacert.org", "", "", "CAcert Support"); |