Skip to content
Snippets Groups Projects
Commit 7a30629e authored by Carsten  Rose's avatar Carsten Rose
Browse files

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
......@@ -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';
......
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment