X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FUtil%2FExAuth.php;h=92f3f56f85eac0abd4574d92dbb337a404e18638;hb=72fc89d033070a72a01fd0b3f7a91d21d7467acb;hp=6a8df2eb4f510a4877e307caadff8bf824bd0550;hpb=0ec44f3e8a73229c3aadea86f61b5571a701c6b7;p=friendica.git diff --git a/src/Util/ExAuth.php b/src/Util/ExAuth.php index 6a8df2eb4f..92f3f56f85 100644 --- a/src/Util/ExAuth.php +++ b/src/Util/ExAuth.php @@ -225,7 +225,7 @@ class ExAuth $this->writeLog(LOG_INFO, 'internal auth for ' . $sUser . '@' . $aCommand[2]); $aUser = DBA::selectFirst('user', ['uid', 'password', 'legacy_password'], ['nickname' => $sUser]); - if (DBA::is_result($aUser)) { + if (DBA::isResult($aUser)) { $uid = $aUser['uid']; $success = User::authenticate($aUser, $aCommand[3]); $Error = $success === false;