mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Fix Funambol configuration issue and missing spaces in log enrties
This commit is contained in:
parent
fd3425bac4
commit
6648c7c404
@ -88,7 +88,8 @@ class Horde_SyncML_Command_Sync extends Horde_SyncML_Command {
|
||||
|
||||
$currentCmdID = $status->output($currentCmdID, $output);
|
||||
|
||||
if ($sync = &$state->getSync($this->_targetURI)) {
|
||||
if ($this->_targetURI != "configuration" && // Fix Funambol issue
|
||||
($sync = &$state->getSync($this->_targetURI))) {
|
||||
$currentCmdID = $sync->startSync($currentCmdID, $output);
|
||||
|
||||
foreach ($this->_syncElements as $element) {
|
||||
|
@ -328,10 +328,10 @@ class Horde_SyncML_Sync {
|
||||
$merge = false;
|
||||
if ($guid)
|
||||
{
|
||||
Horde::logMessage('SyncML: locuri'. $syncItem->getLocURI() . ' guid ' . $guid , __FILE__, __LINE__, PEAR_LOG_DEBUG);
|
||||
Horde::logMessage('SyncML: locuri '. $syncItem->getLocURI() . ' guid ' . $guid , __FILE__, __LINE__, PEAR_LOG_DEBUG);
|
||||
if (($sync_conflicts > CONFLICT_RESOLVED_WITH_DUPLICATE) || in_array($guid, $changes))
|
||||
{
|
||||
Horde::logMessage('SyncML: CONFLICT for locuri'. $syncItem->getLocURI() . ' guid ' . $guid , __FILE__, __LINE__, PEAR_LOG_WARNING);
|
||||
Horde::logMessage('SyncML: CONFLICT for locuri '. $syncItem->getLocURI() . ' guid ' . $guid , __FILE__, __LINE__, PEAR_LOG_WARNING);
|
||||
switch ($sync_conflicts)
|
||||
{
|
||||
case CONFLICT_CLIENT_WINNING:
|
||||
|
Loading…
Reference in New Issue
Block a user