aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engine/lib/entities.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index ce5121d71..4b9473b7e 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -643,11 +643,11 @@
$where[] = "subtype=$subtype";
if ($owner_guid != "")
$where[] = "owner_guid='$owner_guid'";
-
+
$query = "SELECT * from {$CONFIG->dbprefix}entities where ";
foreach ($where as $w)
$query .= " $w and ";
- $query .= " (access_id in {$access} or (access_id = 0 and owner_guid = {$_SESSION['guid']}))"; // Add access controls
+ $query .= " (access_id in {$access} or (access_id = 0 and owner_guid = {$_SESSION['id']}))"; // Add access controls
$query .= " order by $order_by limit $offset, $limit"; // Add order and limit
$dt = get_data($query, "entity_row_to_elggstar");