mirror of
https://github.com/friendica/friendica
synced 2024-11-19 17:03:41 +00:00
Merge pull request #4049 from annando/bugfix-pr-4046
Bugfix to PR 4046: Repaired query
This commit is contained in:
commit
8d57c7c94a
1 changed files with 5 additions and 13 deletions
|
@ -62,21 +62,13 @@ class Group extends BaseObject
|
|||
*/
|
||||
private static function getByContactIdForUserId($uid, $cid)
|
||||
{
|
||||
$stmt = dba::p('SELECT `id`
|
||||
FROM `group`
|
||||
INNER JOIN `group_member`
|
||||
ON `group_member`.`gid` = `group`.`id`
|
||||
WHERE `group`.`uid` = ?
|
||||
AND `group_member`.`contact-id` = ?',
|
||||
$uid,
|
||||
$cid
|
||||
);
|
||||
$condition = ['uid' => $uid, 'contact-id' => $cid];
|
||||
$stmt = dba::select('group_member', ['gid'], $condition);
|
||||
|
||||
$return = [];
|
||||
if (DBM::is_result($stmt)) {
|
||||
|
||||
while ($group = dba::fetch($stmt)) {
|
||||
$return[] = $group['id'];
|
||||
}
|
||||
$return[] = $group['gid'];
|
||||
}
|
||||
|
||||
return $return;
|
||||
|
|
Loading…
Reference in a new issue