diff options
Diffstat (limited to 'pages/wot/9.php')
-rw-r--r-- | pages/wot/9.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pages/wot/9.php b/pages/wot/9.php index 20f2c6d..f68cc16 100644 --- a/pages/wot/9.php +++ b/pages/wot/9.php @@ -27,8 +27,7 @@ $user = mysql_fetch_array($res); $userlang = L10n::normalise_translation($user['language']); - $points = mysql_num_rows(mysql_query("select sum(`points`) as `total` from `notary` - where `to`='".intval($user['id'])."' and `deleted`=0 group by `to` HAVING SUM(`points`) > 0")); + $points = get_received_total_points(intval($user['id'])); if($points <= 0) { echo _("Sorry, I was unable to locate that user."); } else { |