Skip to content

Commit

Permalink
[*bug] Typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikedas committed Mar 22, 2018
1 parent 4139928 commit 284426e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cgi/wwsympa.fcgi.in
Original file line number Diff line number Diff line change
Expand Up @@ -10740,15 +10740,15 @@ sub do_edit_list_request {
my @subparams;
# Current static owners.
my $static_owner =
[grep { $->{'role'} and $->{'role'} eq 'owner' } @static_admins];
[grep { $_->{'role'} and $_->{'role'} eq 'owner' } @static_admins];
@subparams = qw(email gecos info profile reception visibility);
foreach my $u (@$static_owner) {
$u = {map { $_ => $u->{$_} } @subparams};
}
$list->{'admin'}{'owner'} = $static_owner;
# Current static editors.
my $static_editor =
[grep { $->{'role'} and $->{'role'} eq 'editor' } @static_admins];
[grep { $_->{'role'} and $_->{'role'} eq 'editor' } @static_admins];
@subparams = qw(email gecos info reception visibility);
foreach my $u (@$static_editor) {
$u = {map { $_ => $u->{$_} } @subparams};
Expand Down

0 comments on commit 284426e

Please sign in to comment.