Merge pull request #7607 from annando/issue-7603
Issue 7603: Display forums too when they are AP
This commit is contained in:
commit
64e74b4e03
|
@ -43,7 +43,7 @@ class ForumManager
|
||||||
$params = ['order' => ['name']];
|
$params = ['order' => ['name']];
|
||||||
}
|
}
|
||||||
|
|
||||||
$condition_str = "`network` = ? AND `uid` = ? AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND ";
|
$condition_str = "`network` IN (?, ?) AND `uid` = ? AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND ";
|
||||||
|
|
||||||
if ($showprivate) {
|
if ($showprivate) {
|
||||||
$condition_str .= '(`forum` OR `prv`)';
|
$condition_str .= '(`forum` OR `prv`)';
|
||||||
|
@ -58,7 +58,7 @@ class ForumManager
|
||||||
$forumlist = [];
|
$forumlist = [];
|
||||||
|
|
||||||
$fields = ['id', 'url', 'name', 'micro', 'thumb'];
|
$fields = ['id', 'url', 'name', 'micro', 'thumb'];
|
||||||
$condition = [$condition_str, Protocol::DFRN, $uid];
|
$condition = [$condition_str, Protocol::DFRN, Protocol::ACTIVITYPUB, $uid];
|
||||||
$contacts = DBA::select('contact', $fields, $condition, $params);
|
$contacts = DBA::select('contact', $fields, $condition, $params);
|
||||||
if (!$contacts) {
|
if (!$contacts) {
|
||||||
return($forumlist);
|
return($forumlist);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user