diff options
author | INOPIAE <inopiae@cacert.org> | 2014-09-30 22:56:18 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2014-09-30 22:56:18 +0200 |
commit | 107e96eda7a5085d2fd016c72dbf4c676d1ad835 (patch) | |
tree | 4698908bc412fcbf5986d0b224e595890e4098e2 | |
parent | 8df3cb21c04c069806d5af960e7e6dcc0eceec30 (diff) | |
download | cacert-devel-bug-1308.tar.gz cacert-devel-bug-1308.tar.xz cacert-devel-bug-1308.zip |
bug 1308: fixed formatingbug-1308
-rw-r--r-- | includes/general.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/general.php b/includes/general.php index 7aaa536..ae67091 100644 --- a/includes/general.php +++ b/includes/general.php @@ -632,13 +632,13 @@ $subject=""; if(mysql_num_rows($res) > 0) { - printf(_("Your certificate request is still queued and hasn't been processed yet. Please wait, and go to Certificates -> View to see it's status.")); + printf('<p>' . _("Your certificate request is still queued and hasn't been processed yet. Please wait, and go to Certificates -> View to see it's status." . '</p>')); $subject="[CAcert.org] Certificate TIMEOUT"; $body = "A certificate has timed out!\n\n"; } else { - printf(_("Your certificate request has failed to be processed correctly, see %sthe WIKI page%s for reasons and solutions.")." certid:$table:".intval($certid), "<a href='http://wiki.cacert.org/wiki/FAQ/CertificateRenewal'>", "</a>"); + printf('<p>' . _("Your certificate request has failed to be processed correctly, see %sthe WIKI page%s for reasons and solutions.") . " certid:$table:".intval($certid) . '</p>', "<a href='http://wiki.cacert.org/wiki/FAQ/CertificateRenewal'>", "</a>"); $subject="[CAcert.org] Certificate FAILURE"; $body = "A certificate has failed: $table $certid $id $show\n\n"; } |