]> git.mxchange.org Git - friendica.git/commitdiff
change the conditions
authorrabuzarus <>
Fri, 29 May 2015 02:05:41 +0000 (04:05 +0200)
committerrabuzarus <>
Fri, 29 May 2015 02:05:41 +0000 (04:05 +0200)
mod/directory.php

index 81f3c52c7c0b9dcac731613972217b06d78dd760..b13e17627a8dd6fd347d6e46a23b54efc3d902ca 100644 (file)
@@ -29,7 +29,8 @@ function directory_content(&$a) {
 
        require_once("mod/proxy.php");
 
-       if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || (get_config('system','block_local_dir'))) {
+       if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || 
+                (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) {
                notice( t('Public access denied.') . EOL);
                return;
        }