fixed not working connect+login through Net_Sieve constructor: missing options parameter

This commit is contained in:
Klaus Leithoff 2012-05-18 12:49:45 +00:00
parent 4b86cc1931
commit d42726cce0

View File

@ -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) {