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
7a30629e
Commit
7a30629e
authored
May 02, 2017
by
Carsten Rose
Browse files
Sip.php: Parameter XDEBUG_SESSUIB_START excluded from GET parameter copied to SIP.
parent
eb731863
Changes
2
Show whitespace changes
Inline
Side-by-side
extension/qfq/qfq/Constants.php
View file @
7a30629e
...
...
@@ -406,6 +406,11 @@ const SIP_DOWNLOAD_PARAMETER = '_b64_download'; // Parametername, filled in SIP,
const
SIP_PREFIX_BASE64
=
'_b64'
;
const
SIP_EXCLUDE_ID
=
'id'
;
const
SIP_EXCLUDE_TYPE
=
'type'
;
const
SIP_EXCLUDE_L
=
'L'
;
const
SIP_EXCLUDE_XDEBUG_SESSION_START
=
'XDEBUG_SESSION_START'
;
// FURTHER: all extracted params from 'urlparam
const
ACTION_KEYWORD_SLAVE_ID
=
'slaveId'
;
...
...
extension/qfq/qfq/store/Sip.php
View file @
7a30629e
...
...
@@ -136,9 +136,10 @@ class Sip {
// copy every parameter either to $clientArray or to $sipArray
switch
(
$key
)
{
//special T3 parameter.
case
'L'
:
case
'type'
:
case
'id'
:
case
SIP_EXCLUDE_L
:
case
SIP_EXCLUDE_TYPE
:
case
SIP_EXCLUDE_ID
:
case
SIP_EXCLUDE_XDEBUG_SESSION_START
:
$clientArray
[
$key
]
=
$value
;
break
;
case
CLIENT_SIP
:
...
...
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