diff options
author | Michael Tänzer <neo@nhng.de> | 2014-03-21 15:37:33 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-03-21 15:37:33 +0100 |
commit | b8e82fe975ba7971c2b5f166ad14bfc162cf3d67 (patch) | |
tree | 90dde16141f1ff36fa5f455a2d816d1bbcd2db36 /pages/wot | |
parent | afd9564a24ce894d25f2ce1d49976833a980f538 (diff) | |
download | cacert-devel-b8e82fe975ba7971c2b5f166ad14bfc162cf3d67.tar.gz cacert-devel-b8e82fe975ba7971c2b5f166ad14bfc162cf3d67.tar.xz cacert-devel-b8e82fe975ba7971c2b5f166ad14bfc162cf3d67.zip |
bug 1221: Fix "from" not being displayed in received points
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/wot')
-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 24b8a70..c7e1ff1 100644 --- a/pages/wot/10.php +++ b/pages/wot/10.php @@ -64,7 +64,7 @@ <td class="DataTD"><b><?=_("Method")?></b></td> </tr> <? - $query = "select `id`, `date`, `points`, `location`, `method` from `notary` where `to`='".intval($_SESSION['profile']['id'])."' and `deleted`=0"; + $query = "select `id`, `date`, `from`, `points`, `location`, `method` from `notary` where `to`='".intval($_SESSION['profile']['id'])."' and `deleted`=0"; $res = mysql_query($query); while($row = mysql_fetch_assoc($res)) { |