aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/ElggEntity.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 23:14:42 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-12 23:14:42 +0000
commit4dd7d2be5352ac20d3eb2693d78954718c704cbc (patch)
treed970355770c7ad5ea94d90f3b89dd896cf668a65 /engine/classes/ElggEntity.php
parent6410b8bda50dffc601e39acab807813692dd167c (diff)
downloadelgg-4dd7d2be5352ac20d3eb2693d78954718c704cbc.tar.gz
elgg-4dd7d2be5352ac20d3eb2693d78954718c704cbc.tar.bz2
Updated a few recent calls to elgg_get_annotations() to use 'reverse_order_by' => true.
git-svn-id: http://code.elgg.org/elgg/trunk@8186 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes/ElggEntity.php')
-rw-r--r--engine/classes/ElggEntity.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/classes/ElggEntity.php b/engine/classes/ElggEntity.php
index 1154fd89a..7bed1af7c 100644
--- a/engine/classes/ElggEntity.php
+++ b/engine/classes/ElggEntity.php
@@ -533,8 +533,8 @@ abstract class ElggEntity extends ElggData implements
'offset' => $offset,
);
- if ($order == 'desc') {
- $options['order_by'] = 'n_table.time_created desc';
+ if ($order != 'asc') {
+ $options['reverse_order_by'] = true;
}
return elgg_get_annotations($options);