change the conditions

This commit is contained in:
rabuzarus 2015-05-29 04:05:41 +02:00
parent a2a8afa583
commit 3e0635992f
1 changed files with 2 additions and 1 deletions

View 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;
}