aboutsummaryrefslogtreecommitdiff
path: root/yourmostviewed.php
diff options
context:
space:
mode:
authorGreg Froese <greg.froese@gmail.com>2009-05-20 13:36:51 +0000
committerGreg Froese <greg.froese@gmail.com>2009-05-20 13:36:51 +0000
commit0d12092d4c5ca62247fe8495dbb78adfc134691e (patch)
treef8eb5f2606c8f5072075f04c2da1b4f79ea8932b /yourmostviewed.php
parenta8376b4033d8ff8880198cf37f4c0ba9d94d0316 (diff)
downloadelgg-0d12092d4c5ca62247fe8495dbb78adfc134691e.tar.gz
elgg-0d12092d4c5ca62247fe8495dbb78adfc134691e.tar.bz2
fixed most viewed for yourself and friends
Diffstat (limited to 'yourmostviewed.php')
-rw-r--r--yourmostviewed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/yourmostviewed.php b/yourmostviewed.php
index 18936bd69..ffcdb50ad 100644
--- a/yourmostviewed.php
+++ b/yourmostviewed.php
@@ -21,7 +21,7 @@
INNER JOIN " . $prefix . "annotations ann1 ON ann1.entity_guid = ent.guid
INNER JOIN " . $prefix . "metastrings ms ON ms.id = ann1.name_id
AND ms.string = 'tp_view'
- WHERE ann1.owner_guid = " . $viewer->guid . "
+ WHERE ent.owner_guid = " . $viewer->guid . "
GROUP BY ent.guid
ORDER BY views DESC
LIMIT $max";