diff options
author | Friendika <info@friendika.com> | 2011-04-21 17:29:47 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-21 17:29:47 -0700 |
commit | 9e19eef1941fff3e2a8785e5daa6d978e9de4900 (patch) | |
tree | 5027dce8811955f980f0ecb9fbaa37b8b720368b /mod/search.php | |
parent | 1d4791d38c932548df0807f6d26290ea8346765e (diff) | |
download | volse-hubzilla-9e19eef1941fff3e2a8785e5daa6d978e9de4900.tar.gz volse-hubzilla-9e19eef1941fff3e2a8785e5daa6d978e9de4900.tar.bz2 volse-hubzilla-9e19eef1941fff3e2a8785e5daa6d978e9de4900.zip |
"firewall" setting - block all public pages from the public if configured to do so
Diffstat (limited to 'mod/search.php')
-rw-r--r-- | mod/search.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/search.php b/mod/search.php index 793a8c2bb..33032e183 100644 --- a/mod/search.php +++ b/mod/search.php @@ -9,6 +9,11 @@ function search_post(&$a) { function search_content(&$a) { + if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) { + notice( t('Public access denied.') . EOL); + return; + } + require_once("include/bbcode.php"); require_once('include/security.php'); require_once('include/conversation.php'); |