From dbaed3389f34e63b66f8bc0b131f10d26348a99a Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 1 Dec 2007 01:04:01 +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 25f2842912..f1a315c7c2 100644 --- a/phpgwapi/inc/horde/Horde/SyncML.php +++ b/phpgwapi/inc/horde/Horde/SyncML.php @@ -264,7 +264,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)) {