"tiny patch from Andreas Feldner <pelzi-at-flying-snail.de>, allowing for passwords containing a colon"

This commit is contained in:
Ralf Becker 2007-12-01 01:02:05 +00:00
parent 3e29477fe9
commit e75db01b3c

View File

@ -269,7 +269,7 @@ class Horde_SyncML_SyncMLHdr extends Horde_SyncML_ContentHandler {
$this->_credData = base64_decode($this->_credData); $this->_credData = base64_decode($this->_credData);
//} //}
$tmp = split(':', $this->_credData); $tmp = split(':', $this->_credData, 2);
// set only if not set by LocName already // set only if not set by LocName already
if(!isset($this->_locName)) if(!isset($this->_locName))
{ {