aboutsummaryrefslogtreecommitdiff
path: root/yourmostviewed.php
diff options
context:
space:
mode:
authorGreg Froese <greg.froese@gmail.com>2009-05-13 13:26:12 +0000
committerGreg Froese <greg.froese@gmail.com>2009-05-13 13:26:12 +0000
commitbc21cbc465d9cd4d86265246826ba02515541152 (patch)
tree6f8fc7b6d54ed9d3c5494ced2a44d671b2481871 /yourmostviewed.php
parentb32a22535f4b41187475618769d0a4d07aba6684 (diff)
downloadelgg-bc21cbc465d9cd4d86265246826ba02515541152.tar.gz
elgg-bc21cbc465d9cd4d86265246826ba02515541152.tar.bz2
fixed sorting for most viewed and watermarking files to show proper owner when watermarking images in a group album
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 40d05c038..f9a1af88a 100644
--- a/yourmostviewed.php
+++ b/yourmostviewed.php
@@ -20,7 +20,7 @@
INNER JOIN " . $prefix . "metastrings ms ON md.value_id = ms.id
INNER JOIN " . $prefix . "metastrings ms2 ON md.name_id = ms2.id AND ms2.string = 'tp_views'
WHERE ent.owner_guid = " . $viewer->guid . "
- ORDER BY views DESC LIMIT $max";
+ ORDER BY (views+0) DESC LIMIT $max";
$result = get_data($sql);