mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
Merge branch 'master' of git://github.com/friendica/friendica
This commit is contained in:
commit
495d0fb80f
1 changed files with 3 additions and 1 deletions
|
@ -538,8 +538,10 @@ function contact_block() {
|
|||
$a = get_app();
|
||||
|
||||
$shown = get_pconfig($a->profile['uid'],'system','display_friend_count');
|
||||
if(! $shown)
|
||||
if($shown === false)
|
||||
$shown = 24;
|
||||
if($shown == 0)
|
||||
return;
|
||||
|
||||
if((! is_array($a->profile)) || ($a->profile['hide-friends']))
|
||||
return $o;
|
||||
|
|
Loading…
Reference in a new issue