]> git.mxchange.org Git - friendica.git/commitdiff
Guests should be able to use the search as well
authorMichael <heluecht@pirati.ca>
Mon, 3 Jul 2017 20:48:44 +0000 (20:48 +0000)
committerMichael <heluecht@pirati.ca>
Mon, 3 Jul 2017 20:48:44 +0000 (20:48 +0000)
mod/search.php

index 3397c813bf6f57ae9cbdd1d60874149936b7f2fe..1975a05bf662e7a0df98b39c8ef86ebc385e913c 100644 (file)
@@ -92,12 +92,12 @@ function search_post(App $a) {
 
 function search_content(App $a) {
 
-       if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
-               notice( t('Public access denied.') . EOL);
+       if (get_config('system','block_public') && !local_user() && !remote_user()) {
+               notice(t('Public access denied.') . EOL);
                return;
        }
 
-       if(get_config('system','local_search') && !local_user()) {
+       if (get_config('system','local_search') && !local_user() && !remote_user()) {
                http_status_exit(403,
                                array("title" => t("Public access denied."),
                                        "description" => t("Only logged in users are permitted to perform a search.")));
@@ -106,7 +106,7 @@ function search_content(App $a) {
                //return;
        }
 
-       if (get_config('system','permit_crawling') && !local_user()) {
+       if (get_config('system','permit_crawling') && !local_user() && !remote_user()) {
                // Default values:
                // 10 requests are "free", after the 11th only a call per minute is allowed