diff options
Diffstat (limited to 'mod/viewcontacts.php')
-rw-r--r-- | mod/viewcontacts.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 8133fb4a0..7f5050d5d 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -11,6 +11,16 @@ function viewcontacts_init(&$a) { } +function viewcontacts_aside(&$a) { + + if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) { + return; + } + + profile_aside($a); +} + + function viewcontacts_content(&$a) { if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) { |