Skip to content

Commit

Permalink
tidyall.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sympa authors authored and ikedas committed Jul 25, 2020
1 parent cb8fca6 commit f8937cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/lib/Sympa/ConfDef.pm
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ sub _filter {
my $pnames = shift || [];

return map {
my $item = $pinfo->{$_};
my $name = join '.', @$pnames, $_;
my $item = $pinfo->{$_};
my $name = join '.', @$pnames, $_;

my @ret;
if (ref $item->{format} eq 'HASH') {
Expand Down
3 changes: 2 additions & 1 deletion src/lib/Sympa/WWW/Tools.pm
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,8 @@ sub _get_css_url {
my $param = {};
foreach my $p (
grep { /_color\z/ or /\Acolor_/ or /_url\z/ }
map { $_->{name} } grep { not $_->{obsolete} and $_->{name} } @Sympa::ConfDef::params
map { $_->{name} }
grep { not $_->{obsolete} and $_->{name} } @Sympa::ConfDef::params
) {
$param->{$p} = Conf::get_robot_conf($robot, $p);
}
Expand Down

0 comments on commit f8937cc

Please sign in to comment.