fix basic auth with account (not channel) login
This commit is contained in:
parent
48bc9b546c
commit
0fae8acdef
@ -752,7 +752,7 @@ class RedBasicAuth extends Sabre\DAV\Auth\Backend\AbstractBasic {
|
|||||||
}
|
}
|
||||||
|
|
||||||
require_once('include/auth.php');
|
require_once('include/auth.php');
|
||||||
$record = account_verify_password($email,$pass);
|
$record = account_verify_password($username,$password);
|
||||||
if($record && $record['account_default_channel']) {
|
if($record && $record['account_default_channel']) {
|
||||||
$r = q("select * from channel where channel_account_id = %d and channel_id = %d limit 1",
|
$r = q("select * from channel where channel_account_id = %d and channel_id = %d limit 1",
|
||||||
intval($record['account_id']),
|
intval($record['account_id']),
|
||||||
|
Reference in New Issue
Block a user