mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Only allow non top level posts to soap boxes
This commit is contained in:
parent
3648094927
commit
1ea82ea355
2 changed files with 6 additions and 6 deletions
|
@ -340,10 +340,10 @@ function delivery_run(&$argv, &$argc){
|
|||
$ssl_policy = get_config('system','ssl_policy');
|
||||
fix_contact_ssl_policy($x[0],$ssl_policy);
|
||||
|
||||
// If we are setup as a soapbox we aren't accepting input from this person
|
||||
// If we are setup as a soapbox we aren't accepting top level posts from this person
|
||||
|
||||
//if($x[0]['page-flags'] == PAGE_SOAPBOX)
|
||||
// break;
|
||||
if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level)
|
||||
break;
|
||||
|
||||
require_once('library/simplepie/simplepie.inc');
|
||||
logger('mod-delivery: local delivery');
|
||||
|
|
|
@ -734,10 +734,10 @@ function notifier_run(&$argv, &$argc){
|
|||
$ssl_policy = get_config('system','ssl_policy');
|
||||
fix_contact_ssl_policy($x[0],$ssl_policy);
|
||||
|
||||
// If we are setup as a soapbox we aren't accepting input from this person
|
||||
// If we are setup as a soapbox we aren't accepting top level posts from this person
|
||||
|
||||
//if($x[0]['page-flags'] == PAGE_SOAPBOX)
|
||||
// break;
|
||||
if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level)
|
||||
break;
|
||||
|
||||
require_once('library/simplepie/simplepie.inc');
|
||||
logger('mod-delivery: local delivery');
|
||||
|
|
Loading…
Reference in a new issue