diff options
author | dirk <beliebige_email_adresse@fidocon.de> | 2011-08-23 23:56:01 +0200 |
---|---|---|
committer | dirk <beliebige_email_adresse@fidocon.de> | 2011-08-23 23:56:01 +0200 |
commit | 32b9c96fa2216ce8a8a0ae8a8ea1defe18d67b67 (patch) | |
tree | 9126029c1fb5415d7bd650684fba81fc2076cf2d /includes | |
parent | 5e62a3c27b927d45498f8b56ee7561b2a8204d0d (diff) | |
download | cacert-devel-32b9c96fa2216ce8a8a0ae8a8ea1defe18d67b67.tar.gz cacert-devel-32b9c96fa2216ce8a8a0ae8a8ea1defe18d67b67.tar.xz cacert-devel-32b9c96fa2216ce8a8a0ae8a8ea1defe18d67b67.zip |
bug-827 removed '.', which i forgot at last commit
Diffstat (limited to 'includes')
-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 50d615f..05ce449 100644 --- a/includes/wot.inc.php +++ b/includes/wot.inc.php @@ -62,7 +62,7 @@ { $res = query_init ("SELECT count(*) AS `list` FROM `notary` WHERE `method` = 'Face to Face Meeting' - GROUP BY .`to` HAVING count(*) > '".intval($no_of_assurees)."'"); + GROUP BY `to` HAVING count(*) > '".intval($no_of_assurees)."'"); return intval(query_get_number_of_rows($res)+1); } |