From 44959a0d3734ea36e1beb1b60074b6fd35ee2c40 Mon Sep 17 00:00:00 2001 From: dirk Date: Tue, 20 Sep 2011 01:21:35 +0200 Subject: bug-882 changed awarded=null --- includes/notary.inc.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'includes') diff --git a/includes/notary.inc.php b/includes/notary.inc.php index af8d6f1..3651ea5 100644 --- a/includes/notary.inc.php +++ b/includes/notary.inc.php @@ -392,8 +392,11 @@ function calc_points($row) { - if (intval($row['points']) < intval($row['awarded'])) - $points = intval($row['awarded']); // if 'sum of added points' > 100, awarded shows correct value + $awarded = intval($row['awarded']); + if ($awarded == "") + $awarded = 0; + if (intval($row['points']) < $awarded) + $points = $awarded; // if 'sum of added points' > 100, awarded shows correct value else $points = intval($row['points']); // on very old assurances, awarded is '0' instead of correct value switch ($row['method']) -- cgit v1.2.1