Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Maarch
maarchRM
Commits
08e0e665
Commit
08e0e665
authored
Apr 19, 2022
by
Arnaud Pauget
Browse files
fix(20439) : Change params to accept Octave messages
parent
3cb82cc4
Pipeline
#17564
failed with stages
in 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/bundle/medona/Controller/ArchiveTransfer.php
View file @
08e0e665
...
...
@@ -119,15 +119,16 @@ class ArchiveTransfer extends abstractMessage
foreach
(
$confParams
as
$name
=>
$confParam
)
{
// Default value
$param
=
""
;
if
(
isset
(
$confParam
[
"default"
]))
{
$
value
=
$confParam
[
"default"
];
$
param
=
$confParam
[
"default"
];
}
if
(
isset
(
$params
[
$name
])
&&
$params
[
$name
]
!==
""
)
{
$
value
=
$params
[
$name
];
$
param
=
$params
[
$name
];
}
$params
[
$name
]
=
$value
;
//
$params[$name] = $value;
if
(
$param
==
""
)
{
if
(
isset
(
$confParam
[
"required"
])
&&
$confParam
[
"required"
])
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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