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
51f3ccaa
Commit
51f3ccaa
authored
Aug 24, 2016
by
Carsten Rose
Browse files
Report.php: Empty columns in a query throws an exception - fixed.
parent
3cc0f3c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/report/Report.php
View file @
51f3ccaa
...
...
@@ -580,7 +580,8 @@ class Report {
$flagControl
=
false
;
$flagOutput
=
true
;
if
(
$columnName
[
0
]
===
"_"
)
{
// Empty columnsnames are allowed: check with isset
if
(
isset
(
$columnName
[
0
])
&&
$columnName
[
0
]
===
"_"
)
{
$flagControl
=
true
;
$columnName
=
substr
(
$columnName
,
1
);
}
...
...
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