Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
61a9cf35
Commit
61a9cf35
authored
Nov 26, 2017
by
Carsten Rose
Browse files
Bug: 'element-update' for type 'UPLOAD seems to make trouble. Exclude it like 'SELECT'
parent
bd9e62b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/AbstractBuildForm.php
View file @
61a9cf35
...
...
@@ -904,7 +904,7 @@ abstract class AbstractBuildForm {
// if (!$flagRowUpdate) {
// #4771 - temporary workaround: SELECT in 'multi FE row' won't updated after 'save' or with dynamic update.
if
(
$formElement
[
FE_TYPE
]
!=
FE_TYPE_SELECT
)
{
if
(
$formElement
[
FE_TYPE
]
!=
FE_TYPE_SELECT
&&
$formElement
[
FE_TYPE
]
!=
FE_TYPE_UPLOAD
)
{
$json
[
API_ELEMENT_UPDATE
][
$formElement
[
FE_HTML_ID
]][
API_ELEMENT_ATTRIBUTE
][
'value'
]
=
$value
;
}
}
...
...
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