mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-17 02:41:02 +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()
|
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;
|
return $res;
|
||||||
}
|
}
|
||||||
if($this->_bypassAuth === false) {
|
if($this->_bypassAuth === false) {
|
||||||
|
Loading…
Reference in New Issue
Block a user