From 0197125d4225252fc22fbf4f8a09ca42d5b0fc6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Lehrke?= Date: Sun, 7 Feb 2010 17:53:28 +0000 Subject: [PATCH] Fix empty default domain issue again --- phpgwapi/inc/horde/Horde/SyncML/State_egw.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/horde/Horde/SyncML/State_egw.php b/phpgwapi/inc/horde/Horde/SyncML/State_egw.php index 5ce79ac7f4..629903b6f5 100644 --- a/phpgwapi/inc/horde/Horde/SyncML/State_egw.php +++ b/phpgwapi/inc/horde/Horde/SyncML/State_egw.php @@ -315,7 +315,7 @@ class EGW_SyncML_State extends Horde_SyncML_State if (strpos($this->_locName,'@') === False) { $this->_account_domain = $GLOBALS['egw_info']['server']['default_domain']; - $this->_locName .= ($this->_account_domain ? '@'. $this->_account_domain : ''); + $this->_locName .= '@'. ($this->_account_domain ? $this->_account_domain : 'default'); } else {