fix friend list display on user home page

This commit is contained in:
David Anderson 2024-07-18 14:58:46 -07:00
parent f9d0d9226a
commit 00e269757c
1 changed files with 3 additions and 3 deletions

View File

@ -575,11 +575,11 @@ function community_links($clo, $logged_in_user){
}
if ($friends) {
$x = '';
$x = [];
foreach($friends as $friend) {
$x .= friend_links($friend);
$x[] = friend_links($friend);
}
row2(tra('Friends'), $x);
row2(tra('Friends'), implode('<br>', $x));
}
}