mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
fixed handling of session url, when behind a proxy
This commit is contained in:
parent
9dea981ec9
commit
e4409c7b0a
@ -352,21 +352,9 @@ class Horde_SyncML_SyncMLHdr extends Horde_SyncML_ContentHandler {
|
||||
$output->endElement($uri, 'LocURI');
|
||||
$output->endElement($uri, 'Source');
|
||||
|
||||
if(session_id() != '') {
|
||||
if(session_id() != '' && !strpos($this->_targetURI,'syncml_sessionid')) {
|
||||
$output->startElement($uri, 'RespURI', $attrs);
|
||||
if($_SERVER['HTTPS'] == 'on') {
|
||||
$httpPrefix = 'https://';
|
||||
} else {
|
||||
$httpPrefix = 'http://';
|
||||
}
|
||||
|
||||
if($_SERVER['SERVER_PORT'] != '443' && $_SERVER['SERVER_PORT'] != '80') {
|
||||
$port = ':'. $_SERVER['SERVER_PORT'];
|
||||
} else {
|
||||
$port = '';
|
||||
}
|
||||
|
||||
$output->characters($httpPrefix . $_SERVER['SERVER_NAME'] . $port . $_SERVER['PHP_SELF'] . '?syncml_sessionid=' . session_id());
|
||||
$output->characters($this->_targetURI . '?syncml_sessionid=' . session_id());
|
||||
$output->endElement($uri, 'RespURI');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user