Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
709a10a3
Commit
709a10a3
authored
Oct 06, 2017
by
Carsten Rose
Browse files
Fixed problem in subrecord when no record is selected.
parent
be3b79bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/AbstractBuildForm.php
View file @
709a10a3
...
...
@@ -2392,7 +2392,7 @@ abstract class AbstractBuildForm {
$linkNew
=
$flagNew
?
Support
::
wrapTag
(
'<th>'
,
$this
->
createFormLink
(
$formElement
,
0
,
$primaryRecord
,
$this
->
symbol
[
SYMBOL_NEW
],
'New'
))
:
'<th></th>'
;
}
$firstRow
=
isset
(
$formElement
[
FE_SQL1
][
0
])
?
$formElement
[
FE_SQL1
][
0
]
:
null
;
$firstRow
=
isset
(
$formElement
[
FE_SQL1
][
0
])
?
$formElement
[
FE_SQL1
][
0
]
:
array
()
;
$htmlHead
=
$this
->
subrecordHead
(
$linkNew
,
$flagDelete
,
$firstRow
,
$control
);
$htmlBody
=
''
;
foreach
(
$formElement
[
FE_SQL1
]
as
$row
)
{
...
...
Write
Preview
Markdown
is supported
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