improve error handling of webdavauth

This commit is contained in:
Georg Ehrke 2013-06-21 14:39:04 +02:00
parent cb41b88520
commit b0e1259295

View File

@ -56,10 +56,10 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend {
}
$returncode= substr($headers[0], 9, 3);
if(($returncode=='401') or ($returncode=='403')) {
return(false);
}else{
return($uid);
if(substr($returncode, 0, 1) === '2') {
return $uid;
} else {
return false;
}
}