From 3a8b119331beca1e31b3f7ca376395acb9ab3bb0 Mon Sep 17 00:00:00 2001 From: cash Date: Sun, 29 Aug 2010 13:09:12 +0000 Subject: Merged [6875] from 1.7 branch into trunk git-svn-id: http://code.elgg.org/elgg/trunk@6878 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/metadata.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'engine/lib/metadata.php') diff --git a/engine/lib/metadata.php b/engine/lib/metadata.php index 66fa78401..dd2e341d4 100644 --- a/engine/lib/metadata.php +++ b/engine/lib/metadata.php @@ -945,7 +945,11 @@ $count = FALSE, $case_sensitive = TRUE) { } if ($owner_guid) { - $options['owner_guid'] = $owner_guid; + if (is_array($owner_guid)) { + $options['owner_guids'] = $owner_guid; + } else { + $options['owner_guid'] = $owner_guid; + } } if ($limit) { @@ -1076,7 +1080,11 @@ $count = false, $meta_array_operator = 'and') { } if ($owner_guid) { - $options['owner_guid'] = $owner_guid; + if (is_array($owner_guid)) { + $options['owner_guids'] = $owner_guid; + } else { + $options['owner_guid'] = $owner_guid; + } } if ($limit) { -- cgit v1.2.3