diff options
author | INOPIAE <inopiae@cacert.org> | 2013-06-11 23:47:58 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-06-11 23:47:58 +0200 |
commit | 3b6e668c8b568a7db825ae8d78edf5cdc449c34f (patch) | |
tree | 03531407f58fb55fe0c114983482f0ee4a2edad0 | |
parent | adc9c2539398d642a7fcc3ff517d2c1e5b0c8a8d (diff) | |
download | cacert-devel-3b6e668c8b568a7db825ae8d78edf5cdc449c34f.tar.gz cacert-devel-3b6e668c8b568a7db825ae8d78edf5cdc449c34f.tar.xz cacert-devel-3b6e668c8b568a7db825ae8d78edf5cdc449c34f.zip |
bug 1173: corrected output, missing s with sprintfbug-1173
-rw-r--r-- | www/disputes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/disputes.php b/www/disputes.php index f8a5227..0f633ba 100644 --- a/www/disputes.php +++ b/www/disputes.php @@ -243,7 +243,7 @@ showheader(_("Email Dispute")); printf(_("Sorry, the email address '%s' cannot be disputed for administrative reasons. To solve this problem please get in contact with %s."), sanitizeHTML($email),"<a href='mailto:support@cacert.org'>support@cacert.org</a>"); $duser=$_SESSION['profile']['fname']." ".$_SESSION['profile']['lname']; - $body = printf("Someone has just attempted to dispute this email '%s', which belongs to a locked account:\n". + $body = sprintf("Someone has just attempted to dispute this email '%s', which belongs to a locked account:\n". "Username(ID): %s (%s)\n". "email: %s\n". "IP/Hostname: %s\n", $email, $duser, $_SESSION['profile']['id'], $_SESSION['profile']['email'], $_SERVER['REMOTE_ADDR'].(array_key_exists('REMOTE_HOST',$_SERVER)?"/".$_SERVER['REMOTE_HOST']:"")); @@ -332,7 +332,7 @@ showheader(_("Domain Dispute")); printf(_("Sorry, the domain '%s' cannot be disputed for administrative reasons. To solve this problem please get in contact with %s."), sanitizeHTML($domain),"<a href='mailto:support@cacert.org'>support@cacert.org</a>"); $duser=$_SESSION['profile']['fname']." ".$_SESSION['profile']['lname']; - $body = printf("Someone has just attempted to dispute this domain '%s', which belongs to a locked account:\n". + $body = sprintf("Someone has just attempted to dispute this domain '%s', which belongs to a locked account:\n". "Username(ID): %s (%s)\n". "email: %s\n". "IP/Hostname: %s\n", $domain, $duser, $_SESSION['profile']['id'], $_SESSION['profile']['email'], $_SERVER['REMOTE_ADDR'].(array_key_exists('REMOTE_HOST',$_SERVER)?"/".$_SERVER['REMOTE_HOST']:"")); |