Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qfq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
typo3
qfq
Commits
7a30629e
Commit
7a30629e
authored
7 years ago
by
Carsten Rose
Browse files
Options
Downloads
Patches
Plain Diff
Sip.php: Parameter XDEBUG_SESSUIB_START excluded from GET parameter copied to SIP.
parent
eb731863
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
extension/qfq/qfq/Constants.php
+5
-0
5 additions, 0 deletions
extension/qfq/qfq/Constants.php
extension/qfq/qfq/store/Sip.php
+4
-3
4 additions, 3 deletions
extension/qfq/qfq/store/Sip.php
with
9 additions
and
3 deletions
extension/qfq/qfq/Constants.php
+
5
−
0
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'
;
...
...
This diff is collapsed.
Click to expand it.
extension/qfq/qfq/store/Sip.php
+
4
−
3
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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment