aboutsummaryrefslogtreecommitdiff
path: root/friendmostviewed.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 /friendmostviewed.php
parenta8376b4033d8ff8880198cf37f4c0ba9d94d0316 (diff)
downloadelgg-0d12092d4c5ca62247fe8495dbb78adfc134691e.tar.gz
elgg-0d12092d4c5ca62247fe8495dbb78adfc134691e.tar.bz2
fixed most viewed for yourself and friends
Diffstat (limited to 'friendmostviewed.php')
-rw-r--r--friendmostviewed.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/friendmostviewed.php b/friendmostviewed.php
index 8f6299c0d..5c4ec91f4 100644
--- a/friendmostviewed.php
+++ b/friendmostviewed.php
@@ -27,7 +27,6 @@
list($pagename, $friendname) = split("/", $page);
}
$user = get_user_by_username($friendname);
-
global $CONFIG;
$prefix = $CONFIG->dbprefix;
$max = 24;
@@ -39,7 +38,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 = " . $user->guid . "
+ WHERE ent.owner_guid = " . $user->guid . "
GROUP BY ent.guid
ORDER BY views DESC
LIMIT $max";
@@ -48,7 +47,7 @@
$entities = array();
foreach($result as $entity) {
- $entities[] = get_entity($entity->entity_guid);
+ $entities[] = get_entity($entity->guid);
}
$title = sprintf(elgg_echo("tidypics:friendmostviewed"), $friendname);