aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/annotations.php
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-11 16:25:17 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-03-11 16:25:17 +0000
commite17011295c2b28cafa70269ba4b885f0529bbd1a (patch)
tree539b39bb067f8e0aed809d63dca51360b3c82dab /engine/lib/annotations.php
parent5577149cb5af76af8af5a844d22c6ceb6241eec1 (diff)
downloadelgg-e17011295c2b28cafa70269ba4b885f0529bbd1a.tar.gz
elgg-e17011295c2b28cafa70269ba4b885f0529bbd1a.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Added orderby and limits git-svn-id: https://code.elgg.org/elgg/trunk@166 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/annotations.php')
-rw-r--r--engine/lib/annotations.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php
index 3ff8c0e69..21f62f715 100644
--- a/engine/lib/annotations.php
+++ b/engine/lib/annotations.php
@@ -143,7 +143,7 @@
* @param int $limit
* @param int $offset
*/
- function get_annotations($object_id = 0, $object_type = "", $name = "", $value = "", $owner_id = 0, $order_by = "created desc", $limit = 10, $offset = 0)
+ function get_annotations($object_id = 0, $object_type = "", $name = "", $value = "", $owner_id = 0, $object_subtype = "", $order_by = "created desc", $limit = 10, $offset = 0)
{
global $CONFIG;
@@ -187,7 +187,9 @@
if ($n > 0) $query .= " and ";
$query .= $where[$n];
}
- error_log($query);
+
+ $query .= " order by $order_by limit $offset,$limit";
+
return get_data($query, "row_to_elggannotation");
}