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
3eada859
Unverified
Commit
3eada859
authored
Jul 12, 2021
by
IKEDA Soji
Committed by
GitHub
Jul 12, 2021
Browse files
Merge pull request #1207 from ikedas/bug_in_
5b5fd551
custom_robot_parameter parameter was broken
parents
bce24063
b1c50210
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/Conf.pm
View file @
3eada859
...
...
@@ -1709,9 +1709,12 @@ sub _load_config_file_to_hash {
domains_blacklist
=>
'
domains_blocklist
',
# 6.2.41b.1 - 6.2.60
}
->
{
$keyword
}
//
$keyword
;
if
(
exists
$params
{
$keyword
}
&&
defined
$params
{
$keyword
}{'
multiple
'}
&&
$params
{
$keyword
}{'
multiple
'}
==
1
)
{
if
(
exists
$params
{
$keyword
}
and
(
1
==
(
$params
{
$keyword
}{'
multiple
'}
//
0
)
#FIXME
or
$keyword
eq
'
custom_robot_parameter
'
)
)
{
if
(
defined
$result
->
{'
config
'}{
$keyword
})
{
push
@
{
$result
->
{'
config
'}{
$keyword
}},
$value
;
push
@
{
$result
->
{'
numbered_config
'}{
$keyword
}},
...
...
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