diff options
Diffstat (limited to 'engine/lib/metadata.php')
-rw-r--r-- | engine/lib/metadata.php | 12 |
1 files changed, 10 insertions, 2 deletions
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) { |