aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-22 17:52:30 -0700
committerredmatrix <git@macgirvin.com>2016-05-22 17:52:30 -0700
commit5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173 (patch)
tree36b583cd45fd7ba27f505678a9a080a7894d7a1c /boot.php
parentd7d347469c234e14d5d097fa3f6ab90f715324aa (diff)
downloadvolse-hubzilla-5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173.tar.gz
volse-hubzilla-5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173.tar.bz2
volse-hubzilla-5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173.zip
turn the oft-repeated block_public ... check into a function observer_prohibited()
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index 25551346b..690a330d8 100755
--- a/boot.php
+++ b/boot.php
@@ -2400,3 +2400,12 @@ function check_cron_broken() {
}
+
+function observer_prohibited($allow_account = false) {
+
+ if($allow_account)
+ return (((get_config('system','block_public')) && (! get_account_id()) && (! remote_channel())) ? true : false );
+ return (((get_config('system','block_public')) && (! local_channel()) && (! remote_channel())) ? true : false );
+
+}
+