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
a1a88aec
Commit
a1a88aec
authored
Feb 19, 2019
by
Carsten Rose
Browse files
Fix problem with uninitialised variable. Not clear why this hasn't seen before.
parent
469f7dce
Pipeline
#1528
failed with stage
in 1 minute and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extension/Source/core/QuickFormQuery.php
View file @
a1a88aec
...
...
@@ -168,8 +168,11 @@ class QuickFormQuery {
$this
->
store
=
Store
::
getInstance
(
$bodytext
,
$phpUnit
);
$timeout
=
$this
->
store
::
getVar
(
SYSTEM_SESSION_TIMEOUT_SECONDS
,
STORE_SYSTEM
);
Session
::
checkSessionExpired
(
$timeout
);
// If an FE user logs out and a different user logs in (same browser session) - the old values has to be destroyed!
if
(
Session
::
getAndDestroyFlagFeUserHasChanged
()
||
Session
::
checkSessionExpired
(
$timeout
)
)
{
if
(
Session
::
getAndDestroyFlagFeUserHasChanged
()
)
{
$this
->
store
->
unsetStore
(
STORE_USER
);
}
...
...
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