when public access is blocked, profile page should show login box
This commit is contained in:
parent
9e19eef194
commit
eeb3c13ad3
1 changed files with 1 additions and 2 deletions
|
@ -52,8 +52,7 @@ function profile_init(&$a) {
|
||||||
function profile_content(&$a, $update = 0) {
|
function profile_content(&$a, $update = 0) {
|
||||||
|
|
||||||
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
||||||
notice( t('Public access denied.') . EOL);
|
return login();
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue