aboutsummaryrefslogtreecommitdiffstats
path: root/include/security.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-11-22 11:52:38 -0800
committerfriendica <info@friendica.com>2013-11-22 11:52:38 -0800
commit34f8b215114f1041094784c9f931d185b78b0ec2 (patch)
tree0485c28fd259279226e50162be972306f0a368a3 /include/security.php
parentf6b43a0a7bc96e199fad8ad65e0aa63bd9a04f8b (diff)
downloadvolse-hubzilla-34f8b215114f1041094784c9f931d185b78b0ec2.tar.gz
volse-hubzilla-34f8b215114f1041094784c9f931d185b78b0ec2.tar.bz2
volse-hubzilla-34f8b215114f1041094784c9f931d185b78b0ec2.zip
init_groups_visitor() was still using old array of id output (not the newer array of hash which we need for permission queries)
Diffstat (limited to 'include/security.php')
-rw-r--r--include/security.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/security.php b/include/security.php
index 1181e6bf2..296fa450f 100644
--- a/include/security.php
+++ b/include/security.php
@@ -386,12 +386,12 @@ function check_form_security_token_ForbiddenOnErr($typename = '', $formname = 'f
if(! function_exists('init_groups_visitor')) {
function init_groups_visitor($contact_id) {
$groups = array();
- $r = q("SELECT gid FROM group_member WHERE xchan = '%s' ",
+ $r = q("SELECT hash FROM `group` left join group_member on group.id = group_member.gid WHERE xchan = '%s' ",
dbesc($contact_id)
);
if(count($r)) {
foreach($r as $rr)
- $groups[] = $rr['gid'];
+ $groups[] = $rr['hash'];
}
return $groups;
}}