Skip to content
This repository has been archived by the owner on May 16, 2021. It is now read-only.

Commit

Permalink
Make sure $this->_options is an array to fix possible warning
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Dec 18, 2015
1 parent 34f9538 commit 47419a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sieve.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function __construct($user = null, $pass = null, $host = 'localhost',
$this->_sock = new Net_Socket();
$this->_bypassAuth = $bypassAuth;
$this->_useTLS = $useTLS;
$this->_options = $options;
$this->_options = (array) $options;
$this->setDebug($debug, $handler);

/* Try to include the Auth_SASL package. If the package is not
Expand Down

0 comments on commit 47419a2

Please sign in to comment.