sforkowany z mirror/friendica
Merge pull request #9277 from annando/issue-9268
Issue 9268: Don't show posts from followers on community page2022.09-rc
commit
8e6483970a
|
@ -295,6 +295,11 @@ class Community extends BaseModule
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (local_user() && DI::config()->get('system', 'community_no_followers')) {
|
||||||
|
$condition[0] .= " AND NOT EXISTS (SELECT `uri-id` FROM `thread` AS t1 WHERE `t1`.`uri-id` = `thread`.`uri-id` AND `t1`.`uid` = ?)";
|
||||||
|
$condition[] = local_user();
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($max_id)) {
|
if (isset($max_id)) {
|
||||||
$condition[0] .= " AND `commented` < ?";
|
$condition[0] .= " AND `commented` < ?";
|
||||||
$condition[] = $max_id;
|
$condition[] = $max_id;
|
||||||
|
|
|
@ -122,6 +122,10 @@ return [
|
||||||
// Deny public access to the local user directory.
|
// Deny public access to the local user directory.
|
||||||
'block_local_dir' => false,
|
'block_local_dir' => false,
|
||||||
|
|
||||||
|
// community_no_followers (Boolean)
|
||||||
|
// Don't display followers on the global community
|
||||||
|
'community_no_followers' => false,
|
||||||
|
|
||||||
// cron_interval (Integer)
|
// cron_interval (Integer)
|
||||||
// Minimal period in minutes between two calls of the "Cron" worker job.
|
// Minimal period in minutes between two calls of the "Cron" worker job.
|
||||||
'cron_interval' => 5,
|
'cron_interval' => 5,
|
||||||
|
|
Ładowanie…
Reference in New Issue