From 1c5bceeae7f572a975ed7c2c17fa4cffce4718a6 Mon Sep 17 00:00:00 2001 From: INOPIAE Date: Wed, 22 Jul 2015 21:40:31 +0200 Subject: [PATCH] bug 1391: adjusted query so that only the non administrative increase assurance are taken for the point calculation --- manager/application/models/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manager/application/models/User.php b/manager/application/models/User.php index 3085123..443dac5 100644 --- a/manager/application/models/User.php +++ b/manager/application/models/User.php @@ -108,8 +108,8 @@ class Default_Model_User { * user's points */ public function refreshPoints() { - $query = 'select sum(`points`) as `total` from `notary` '. - 'where `to` = :user'; + $query = "select sum(`points`) as `total` from `notary` " . + "where `to` = :user and method != 'Administrative Increase' and from != to"; $query_params['user'] = $this->id; $row = $this->db->query($query, $query_params)->fetch(); if ($row['total'] === null) $row['total'] = 0;