summaryrefslogtreecommitdiff
path: root/manager/application/models/User.php
diff options
context:
space:
mode:
Diffstat (limited to 'manager/application/models/User.php')
-rw-r--r--manager/application/models/User.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/manager/application/models/User.php b/manager/application/models/User.php
index 83857ca..24b27ed 100644
--- a/manager/application/models/User.php
+++ b/manager/application/models/User.php
@@ -121,7 +121,7 @@ class Default_Model_User {
$this->points = 100;
$query = "SELECT COUNT(`points`) AS `total` FROM `notary` " .
- "WHERE `from` = :user AND `method` == 'Face to Face Meeting' AND `from` != `to`";
+ "WHERE `from` = :user AND `method` = 'Face to Face Meeting' AND `from` != `to`";
$query_params['user'] = $this->id;
$row = $this->db->query($query, $query_params)->fetch();
if ($row['total'] === null) $row['total'] = 0;