Enable https authentication

Allow authentication using https:// as well as http://
This commit is contained in:
opensaucesystems 2013-05-23 17:22:05 +02:00
parent e866e564c2
commit 169eb10030
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend {
public function checkPassword( $uid, $password ) {
$arr = explode('://', $this->webdavauth_url, 2);
if( ! isset($arr) && count($arr) !== 2) {
if( ! isset($arr) OR count($arr) !== 2) {
OC_Log::write('OC_USER_WEBDAVAUTH', 'Invalid Url: "'.$this->webdavauth_url.'" ', 3);
return false;
}