]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Refs #2351: deprecated get_objects_in_group() in favor of elgg_get_entities(). There...
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 3 Nov 2010 20:23:50 +0000 (20:23 +0000)
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 3 Nov 2010 20:23:50 +0000 (20:23 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7228 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/lib/group.php

index 53053976aca6d53239d21cd8fcc3e7c3ad480be0..6b480df0cc59c00ae68fead039a0640471d3a753 100644 (file)
@@ -178,9 +178,11 @@ function remove_object_from_group($group_guid, $object_guid) {
  * @param bool   $count      Whether to return the entities or a count of them.
  *
  * @return array|false
+ * @deprecated 1.8 Use elgg_get_entities() instead
  */
 function get_objects_in_group($group_guid, $subtype = "", $owner_guid = 0, $site_guid = 0,
 $order_by = "", $limit = 10, $offset = 0, $count = FALSE) {
+       elgg_deprecated_notice("get_objects_in_group was deprected in 1.8.  Use elgg_get_entities() instead", 1.8);
 
        global $CONFIG;