diff options
-rw-r--r-- | engine/lib/annotations.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index 2488a8422..4ecb9ea16 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -270,8 +270,8 @@ foreach ($where as $w)
$query .= " $w and ";
$query .= get_access_sql_suffix("a"); // Add access controls
- $query .= " order by $order_by limit $offset,$limit"; // Add order and limit
-echo "$query\n"; return get_data($query, "row_to_elggannotation");
+ $query .= " order by $order_by limit $offset,$limit"; // Add order and limit + return get_data($query, "row_to_elggannotation");
}
|