diff options
Diffstat (limited to 'modules/tag')
-rw-r--r-- | modules/tag/models/tag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tag/models/tag.php b/modules/tag/models/tag.php index 0550910d..8027a505 100644 --- a/modules/tag/models/tag.php +++ b/modules/tag/models/tag.php @@ -46,7 +46,7 @@ class Tag_Model_Core extends ORM { ->join("items_tags", "items.id", "items_tags.item_id") ->where("items_tags.tag_id", "=", $this->id) ->merge_where($where) - ->order_by("items.id") + ->order_by("items.id", DESC) ->find_all($limit, $offset); } |