diff options
-rw-r--r-- | includes/wot.inc.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/includes/wot.inc.php b/includes/wot.inc.php index 2f12c01..dc75899 100644 --- a/includes/wot.inc.php +++ b/includes/wot.inc.php @@ -323,8 +323,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']) |