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
0c96401a
Commit
0c96401a
authored
Dec 23, 2018
by
Carsten Rose
Browse files
Fixes #7538: report/Excel.php - access to undefined index.
parent
3b5054f8
Pipeline
#1250
passed with stage
in 1 minute and 33 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Source/core/report/Excel.php
View file @
0c96401a
...
@@ -112,8 +112,8 @@ class Excel {
...
@@ -112,8 +112,8 @@ class Excel {
}
}
$token
=
explode
(
'='
,
$line
,
2
);
$token
=
explode
(
'='
,
$line
,
2
);
$key
=
trim
(
$token
[
0
]);
$key
=
trim
(
$token
[
0
]
??
''
);
$value
=
trim
(
$token
[
1
]);
$value
=
trim
(
$token
[
1
]
??
''
);
switch
(
$key
)
{
switch
(
$key
)
{
case
EXCEL_WORKSHEET
:
case
EXCEL_WORKSHEET
:
...
...
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