mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-12 01:54:26 +02:00
diaspora photos ?
This commit is contained in:
parent
91de9edecd
commit
56d64316f4
10 changed files with 175 additions and 12 deletions
|
@ -124,9 +124,10 @@ function group_public_members($gid) {
|
|||
$r = q("SELECT `contact`.`id` AS `contact-id` FROM `group_member`
|
||||
LEFT JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id`
|
||||
WHERE `gid` = %d AND `group_member`.`uid` = %d
|
||||
AND `contact`.`network` != 'dfrn' AND `contact`.`network` != 'mail' AND `contact`.`network` != 'face' ",
|
||||
AND `contact`.`network` = '%' AND `contact`.`notify` != '' ",
|
||||
intval($gid),
|
||||
intval(local_user())
|
||||
intval(local_user()),
|
||||
dbesc(NETWORK_OSTATUS)
|
||||
);
|
||||
if(count($r))
|
||||
$ret = count($r);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue