Skip to content
GitLab
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
6a1a7790
Commit
6a1a7790
authored
Oct 07, 2020
by
Marc Egger
Browse files
fix undefined index exception
parent
721e2e3e
Pipeline
#3952
failed with stages
in 3 minutes and 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Core/QuickFormQuery.php
View file @
6a1a7790
...
...
@@ -148,6 +148,11 @@ class QuickFormQuery {
$t3data
[
T3DATA_UID
]
=
0
;
}
if
(
!
isset
(
$t3data
[
T3DATA_HEADER
]))
{
// TODO: ?CR: when does this happen? why no exception thrown?
$t3data
[
T3DATA_HEADER
]
=
''
;
}
// Read report file, if file keyword exists in bodytext
$reportPathFileNameFull
=
ReportAsFile
::
parseFileKeyword
(
$t3data
[
T3DATA_BODYTEXT
]);
if
(
$reportPathFileNameFull
!==
null
)
{
...
...
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