diff options
author | Benny Baumann <BenBE@geshi.org> | 2013-11-26 23:01:26 +0100 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2013-11-26 23:01:26 +0100 |
commit | 1404a1b940a3f22c505e406654dba44c4fe7ad7e (patch) | |
tree | 9297ddf1921893f6d78b10a01b8cf0b0c27edb41 | |
parent | ee50e854893eb006cc716ed5c6a3d595283f990d (diff) | |
download | cacert-devel-1404a1b940a3f22c505e406654dba44c4fe7ad7e.tar.gz cacert-devel-1404a1b940a3f22c505e406654dba44c4fe7ad7e.tar.xz cacert-devel-1404a1b940a3f22c505e406654dba44c4fe7ad7e.zip |
bug 1221: missing column in query for assurances data
-rw-r--r-- | pages/wot/10.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/wot/10.php b/pages/wot/10.php index d796789..24b8a70 100644 --- a/pages/wot/10.php +++ b/pages/wot/10.php @@ -114,7 +114,7 @@ if ($thawte) </tr> <? $points = 0; - $query = "select `id`, `date`, `points`, `location`, `method` from `notary` where `from`='".intval($_SESSION['profile']['id'])."' and `to`!='".intval($_SESSION['profile']['id'])."' and `deleted`=0" ; + $query = "select `id`, `date`, `points`, `to`, `location`, `method` from `notary` where `from`='".intval($_SESSION['profile']['id'])."' and `to`!='".intval($_SESSION['profile']['id'])."' and `deleted`=0" ; $res = mysql_query($query); while($row = mysql_fetch_assoc($res)) { |