diff options
author | Michael Tänzer <neo@nhng.de> | 2013-09-11 01:11:40 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2013-09-11 01:11:40 +0200 |
commit | f80065bca908d1ecf05cee259a4170e8aa076b8b (patch) | |
tree | c60ce00c06f92a6f7d337370c68405c49e53d100 | |
parent | 502b87fdedec8226196a1649ac15f17b2fa3cc7e (diff) | |
download | cacert-devel-bug-1065.tar.gz cacert-devel-bug-1065.tar.xz cacert-devel-bug-1065.zip |
Bug 1065: Actually show the points that were awardedbug-1065
Signed-off-by: Michael Tänzer <neo@nhng.de>
-rw-r--r-- | www/wot.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/wot.php b/www/wot.php index f67b875..1d24aee 100644 --- a/www/wot.php +++ b/www/wot.php @@ -332,9 +332,9 @@ $iecho= "c"; $assurer = $_SESSION['profile']['fname'].' '.$_SESSION['profile']['lname']; $body = sprintf(_("You are receiving this email because you have been assured by %s (%s)."), $assurer, $_SESSION['profile']['email'])."\n\n"; if(($oldpoints + $newpoints) >= 100) - $body .= sprintf(_("You were issued %s points however the system only counts up to 100 assurance points. You now have 100 countable assurance points and %s countable expierence points."), $_POST['points'], ($newpoints + $oldpoints-100))."\n\n"; + $body .= sprintf(_("You were issued %s points. However the system only counts up to 100 assurance points."), $awarded)."\n\n"; else - $body .= sprintf(_("You were issued %s points and you now have %s points in total."), $newpoints, ($newpoints + $oldpoints))."\n\n"; + $body .= sprintf(_("You were issued %s points and you now have %s points in total."), $awarded, ($newpoints + $oldpoints))."\n\n"; if(($oldpoints + $newpoints) < 100 && ($oldpoints + $newpoints) >= 50) { @@ -368,7 +368,7 @@ $iecho= "c"; $assuree = $_SESSION['_config']['notarise']['fname'].' '.$_SESSION['_config']['notarise']['lname']; $body = sprintf(_("You are receiving this email because you have assured %s (%s)."), $assuree, $_SESSION['_config']['notarise']['email'])."\n\n"; - $body .= sprintf(_("You issued %s points."), $newpoints)."\n\n"; + $body .= sprintf(_("You issued %s points."), $awarded)."\n\n"; if($_SESSION['profile']['board'] == 1 && intval($_POST['expire']) > 0) $body .= sprintf(_("Please Note: this is a temporary increase for %s days only. After that time their points will be reduced to 150 points."), intval($_POST['expire']))."\n\n"; |