Merge branch 'bug-1391'

This commit is contained in:
Benny Baumann 2015-08-04 22:12:44 +02:00
commit 2cbb6d9c9c

View file

@ -126,8 +126,7 @@ class Default_Model_User {
$row = $this->db->query($query, $query_params)->fetch();
if ($row['total'] === null) $row['total'] = 0;
$this->points += ($row['total'] > 25) ? 50 : $row['total'] * 2;
$this->points += ($row['total'] > 25) ? 50 : 2 * $row['total'];
}
/**