diff options
-rw-r--r-- | includes/wot.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/wot.inc.php b/includes/wot.inc.php index c5377ac..1c36df0 100644 --- a/includes/wot.inc.php +++ b/includes/wot.inc.php @@ -44,7 +44,7 @@ function get_number_of_ttpassurances ($userid) { $res = query_init ("SELECT count(*) AS `list` FROM `notary` - WHERE (`method`='Trusted Third Parties' or `method`='TTP-Assisted') AND `from`='".intval($userid)."' "); + WHERE (`method`='Trusted Third Parties' or `method`='TTP-Assisted') AND `to`='".intval($userid)."' "); $row = query_getnextrow($res); return intval($row['list']); |