change the conditions

2022.09-rc
rabuzarus 2015-05-29 04:05:41 +02:00
rodzic a2a8afa583
commit 3e0635992f
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

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