mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
Fix SyncML SourceURI issue
This commit is contained in:
parent
4e42eb30f0
commit
99cb0d791a
@ -133,7 +133,7 @@ class Horde_SyncML_Command_Put extends Horde_SyncML_Command {
|
||||
break;
|
||||
|
||||
case 'SourceRef':
|
||||
$this->_sourceReference = trim($this->_chars);
|
||||
$this->_sourceReference = strtolower(trim($this->_chars));
|
||||
break;
|
||||
|
||||
case 'Tx-Pref':
|
||||
|
@ -985,6 +985,7 @@ class Horde_SyncML_State {
|
||||
|
||||
function getPreferedContentTypeClient($_sourceLocURI, $_targetLocURI = null) {
|
||||
$deviceInfo = $this->getClientDeviceInfo();
|
||||
$_sourceLocURI = strtolower($_sourceLocURI);
|
||||
|
||||
if(isset($deviceInfo['dataStore'][$_sourceLocURI]['maxGUIDSize']['contentType'])) {
|
||||
$this->_maxGUIDSize = $deviceInfo['dataStore'][$this->_sourceURI]['maxGUIDSize']['contentType'];
|
||||
|
Loading…
Reference in New Issue
Block a user