diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-02 14:50:19 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-02 14:50:19 +0000 |
commit | 71d647e7684279a360fcf7c477fdc2f02623f70a (patch) | |
tree | 25fe6261febfceae6a35b7f8de95f056a11053af /engine/lib/annotations.php | |
parent | 21219ce636dca9ff167fb1bfbd71921301d32c1a (diff) | |
download | elgg-71d647e7684279a360fcf7c477fdc2f02623f70a.tar.gz elgg-71d647e7684279a360fcf7c477fdc2f02623f70a.tar.bz2 |
reversed my last tweak, another solution will be required
git-svn-id: https://code.elgg.org/elgg/trunk@628 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/annotations.php')
-rw-r--r-- | engine/lib/annotations.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index 626ff34de..8a690769d 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -218,7 +218,7 @@ * @param int $offset
* @param string $order_by
*/
- function get_annotations($entity_guid = 0, $entity_type = "", $entity_subtype = "", $name = "", $value = "", $owner_guid = 0, $limit = 10, $offset = 0, $order_by = "a.time_created asc")
+ function get_annotations($entity_guid = 0, $entity_type = "", $entity_subtype = "", $name = "", $value = "", $owner_guid = 0, $limit = 10, $offset = 0, $order_by = "a.time_created desc")
{
global $CONFIG;
|