mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
fixed not working connect+login through Net_Sieve constructor: missing options parameter
This commit is contained in:
parent
4b86cc1931
commit
d42726cce0
@ -215,7 +215,7 @@ class Net_Sieve
|
||||
*/
|
||||
function _handleConnectAndLogin()
|
||||
{
|
||||
if (PEAR::isError($res = $this->connect($this->_data['host'] , $this->_data['port'], $this->_useTLS ))) {
|
||||
if (PEAR::isError($res = $this->connect($this->_data['host'] , $this->_data['port'], null, $this->_useTLS ))) {
|
||||
return $res;
|
||||
}
|
||||
if($this->_bypassAuth === false) {
|
||||
|
Loading…
Reference in New Issue
Block a user