Skip to content

Commit

Permalink
Fix profile page
Browse files Browse the repository at this point in the history
Fixes #1428
  • Loading branch information
anall committed Jun 25, 2015
1 parent cc74020 commit c137415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/profile.bml
Expand Up @@ -747,7 +747,7 @@ body<=
my %banned_users = map { $_ => 1 } @$banned;

# remove banned users from lists to display
@$_ = grep { !exists $banned_users{ $_ }, @$_ }
@$_ = grep { !exists $banned_users{ $_ } } @$_
foreach ( \@trusted_userids, \@watched_userids, \@trusted_by_userids, \@watched_by_userids,
\@mutually_trusted_userids, \@mutually_watched_userids, \@mutually_watched_userids,
\@not_mutually_trusted_userids, \@not_mutually_watched_userids,
Expand Down

0 comments on commit c137415

Please sign in to comment.