From e75db01b3c7ebaa82fc057927c93960f194092cc Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 1 Dec 2007 01:02:05 +0000 Subject: [PATCH] "tiny patch from Andreas Feldner , allowing for passwords containing a colon" --- phpgwapi/inc/horde/Horde/SyncML.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/horde/Horde/SyncML.php b/phpgwapi/inc/horde/Horde/SyncML.php index 8d41f43404..7159136216 100644 --- a/phpgwapi/inc/horde/Horde/SyncML.php +++ b/phpgwapi/inc/horde/Horde/SyncML.php @@ -269,7 +269,7 @@ class Horde_SyncML_SyncMLHdr extends Horde_SyncML_ContentHandler { $this->_credData = base64_decode($this->_credData); //} - $tmp = split(':', $this->_credData); + $tmp = split(':', $this->_credData, 2); // set only if not set by LocName already if(!isset($this->_locName)) {