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
6d9b9daf
Commit
6d9b9daf
authored
Oct 01, 2019
by
Carsten Rose
Browse files
Fixes #9274 - PHP 7.3 reports: switch statement with 'continue 2'.
parent
3822a698
Pipeline
#2459
passed with stages
in 2 minutes and 49 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Core/Store/Store.php
View file @
6d9b9daf
...
...
@@ -789,15 +789,17 @@ class Store {
$sipArray
=
self
::
getStore
(
STORE_SIP
);
foreach
(
$sipArray
as
$key
=>
$value
)
{
if
(
$key
[
0
]
===
'_'
)
{
continue
;
}
switch
(
$key
)
{
case
SIP_SIP
:
case
SIP_RECORD_ID
:
case
SIP_FORM
;
case
SIP_URLPARAM
:
continue
;
continue
2
;
default
:
$tmpParam
[
$key
]
=
$value
;
}
...
...
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