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
559461c3
Commit
559461c3
authored
Dec 17, 2018
by
Carsten Rose
Browse files
Fixed problem with '?:' - implemented in 2016.
parent
9791d0df
Pipeline
#1164
passed with stage
in 1 minute and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Source/core/report/Variables.php
View file @
559461c3
...
...
@@ -147,8 +147,8 @@ class Variables {
}
if
(
isset
(
$GLOBALS
[
"TSFE"
]
->
fe_user
))
{
$arr
[
"fe_user_uid"
]
=
$GLOBALS
[
"TSFE"
]
->
fe_user
->
user
[
"uid"
]
?
:
'-'
;
$arr
[
"fe_user"
]
=
$GLOBALS
[
"TSFE"
]
->
fe_user
->
user
[
"username"
]
?
:
'-'
;
$arr
[
"fe_user_uid"
]
=
$GLOBALS
[
"TSFE"
]
->
fe_user
->
user
[
"uid"
]
?
?
'-'
;
$arr
[
"fe_user"
]
=
$GLOBALS
[
"TSFE"
]
->
fe_user
->
user
[
"username"
]
?
?
'-'
;
}
else
{
$arr
[
"fe_user_uid"
]
=
'-'
;
$arr
[
"fe_user"
]
=
'-'
;
...
...
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