Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
3bea90b8
Unverified
Commit
3bea90b8
authored
Jul 25, 2020
by
IKEDA Soji
Committed by
GitHub
Jul 25, 2020
Browse files
Merge pull request #973 from ikedas/issue-969 by ikedas
Cannot include privileged owner from list even if it has to (#969)
parents
088c36d7
245e57be
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/Sympa/List.pm
View file @
3bea90b8
...
...
@@ -4586,6 +4586,17 @@ sub _load_include_admin_user_file {
_load_include_admin_user_postprocess
(
\
%include
);
foreach
my
$cfgs
(
values
%include
)
{
foreach
my
$cfg
(
@
{
$cfgs
||
[]
})
{
foreach
my
$k
(
keys
%$entry
)
{
next
if
$k
eq
'
source
';
next
if
$k
eq
'
source_parameters
';
next
unless
defined
$entry
->
{
$k
};
$cfg
->
{
$k
}
=
$entry
->
{
$k
};
}
}
}
return
\
%include
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment