diff options
author | RedMatrix <info@friendica.com> | 2014-08-16 07:07:36 +1000 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-08-16 07:07:36 +1000 |
commit | 73c209f325a89eba3bdb7d10b76c316d3330ac41 (patch) | |
tree | 6e4d43c9d1d3bfc74c9738f997ced028a37c967f /include/zot.php | |
parent | 42863896546d5638bedeb034d5c1001d1f0f35a8 (diff) | |
parent | d57fe0765c7fe6bba41eb4e738995c18c6679fb1 (diff) | |
download | volse-hubzilla-73c209f325a89eba3bdb7d10b76c316d3330ac41.tar.gz volse-hubzilla-73c209f325a89eba3bdb7d10b76c316d3330ac41.tar.bz2 volse-hubzilla-73c209f325a89eba3bdb7d10b76c316d3330ac41.zip |
Merge pull request #563 from zzottel/master
don't block "public" messages with authenticated scope
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index 06e4cd79e..3a533a9e0 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1430,7 +1430,7 @@ function allowed_public_recips($msg) { $hash = make_xchan_hash($msg['notify']['sender']['guid'],$msg['notify']['sender']['guid_sig']); - if($scope === 'public' || $scope === 'network: red') + if($scope === 'public' || $scope === 'network: red' || $scope === 'authenticated') return $recips; if(strpos($scope,'site:') === 0) { |