]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/ExAuth.php
Simplified attachment handling
[friendica.git] / src / Util / ExAuth.php
index 6a8df2eb4f510a4877e307caadff8bf824bd0550..92f3f56f85eac0abd4574d92dbb337a404e18638 100644 (file)
@@ -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;