]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Deprecated list_entities_from_metadata_multi
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 24 Nov 2010 22:33:29 +0000 (22:33 +0000)
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 24 Nov 2010 22:33:29 +0000 (22:33 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7437 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/lib/metadata.php

index 71aa6c0f7a1d7646916b3c9ffca32e44284e4fca..12c8a74afc1525a3d3dec9830f4e107886109fd9 100644 (file)
@@ -1119,9 +1119,16 @@ $count = false, $meta_array_operator = 'and') {
  * @param bool   $pagination     Display pagination? Default: true
  *
  * @return string List of ElggEntities suitable for display
+ * 
+ * @deprecated Use elgg_list_entities_from_metadata() instead
  */
 function list_entities_from_metadata_multi($meta_array, $entity_type = "", $entity_subtype = "",
 $owner_guid = 0, $limit = 10, $fullview = true, $listtypetoggle = true, $pagination = true) {
+       elgg_deprecated_notice(elgg_echo('deprecated:function', array(
+               'list_entities_from_metadata_multi', 
+               'elgg_get_entities_from_metadata'
+       )), 1.8);
+       
 
        $offset = (int) get_input('offset');
        $limit = (int) $limit;