diff options
author | friendica <info@friendica.com> | 2012-04-04 20:45:48 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-04 20:45:48 -0700 |
commit | b45327b856a3ce116931c6b554e23fc1bef20b7c (patch) | |
tree | f1c71825e14cee6fbc9a5d0d6ade8df22a58198b | |
parent | 5377683c0ff2959ae515ac21bf32beac8a7e4c60 (diff) | |
download | volse-hubzilla-b45327b856a3ce116931c6b554e23fc1bef20b7c.tar.gz volse-hubzilla-b45327b856a3ce116931c6b554e23fc1bef20b7c.tar.bz2 volse-hubzilla-b45327b856a3ce116931c6b554e23fc1bef20b7c.zip |
let's catch d* disabled at a higher level and not waste any resources on it.
-rwxr-xr-x | mod/receive.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mod/receive.php b/mod/receive.php index 950bf0bd3..2bd3cc65b 100755 --- a/mod/receive.php +++ b/mod/receive.php @@ -12,6 +12,13 @@ require_once('include/diaspora.php'); function receive_post(&$a) { + + $enabled = intval(get_config('system','diaspora_enabled')); + if(! $enabled) { + logger('mod-diaspora: disabled'); + http_status_exit(500); + } + $public = false; if(($a->argc == 2) && ($a->argv[1] === 'public')) { |