diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-01 02:59:15 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-01 02:59:15 +0000 |
commit | 66120761c422ff001ea3556cd00c6bf6853b7065 (patch) | |
tree | 61c7a1c771cb8b2163ca03585de288acddd1a346 /engine/lib/annotations.php | |
parent | cee283c2a92d819c38db443f737fd7f789c9e3ef (diff) | |
download | elgg-66120761c422ff001ea3556cd00c6bf6853b7065.tar.gz elgg-66120761c422ff001ea3556cd00c6bf6853b7065.tar.bz2 |
Fixed incorrect deprecated warning.
git-svn-id: http://code.elgg.org/elgg/trunk@3878 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 105282c8c..666b83309 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -695,7 +695,7 @@ function elgg_get_entity_annotation_where_sql($table, $names = NULL, $values = N function get_entities_from_annotations($entity_type = "", $entity_subtype = "", $name = "", $value = "", $owner_guid = 0, $group_guid = 0, $limit = 10, $offset = 0, $order_by = "asc", $count = false, $timelower = 0, $timeupper = 0) { - elgg_deprecated_notice('get_entities_from_annotations() was deprecated by elgg_get_entities_from_annotations().', 1.3); + elgg_deprecated_notice('get_entities_from_annotations() was deprecated by elgg_get_entities_from_annotations().', 1.7); $options = array(); |