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
245e57be
Commit
245e57be
authored
Jul 25, 2020
by
IKEDA Soji
Browse files
Cannot include privileged owner from list even if it has to
parent
db8702f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/Sympa/List.pm
View file @
245e57be
...
...
@@ -4773,6 +4773,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