From aaf2027a090954779a563d2581817490df685cb1 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 22 Jul 2008 16:18:39 +0000 Subject: Updated further functions to work from container_guids rather than owner_guids git-svn-id: https://code.elgg.org/elgg/trunk@1493 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/tags.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/lib/tags.php') diff --git a/engine/lib/tags.php b/engine/lib/tags.php index 37b021bde..fbb533c4a 100644 --- a/engine/lib/tags.php +++ b/engine/lib/tags.php @@ -127,9 +127,9 @@ $query .= " and e.type = '{$entity_type}' "; } if (is_array($owner_guid)) { - $query .= " and e.owner_guid in (".implode(",",$owner_guid).")"; + $query .= " and e.container_guid in (".implode(",",$owner_guid).")"; } else if (is_int($owner_guid)) { - $query .= " and e.owner_guid = {$owner_guid} "; + $query .= " and e.container_guid = {$owner_guid} "; } $query .= " and (e.access_id in {$access} or (e.access_id = 0 and e.owner_guid = {$_SESSION['id']}))"; -- cgit v1.2.3