]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Owa.php
Relocated function
[friendica.git] / src / Module / Owa.php
index 84f25024475eedeed06e41298987761d5b767312..1d6b1332dcec81bdcf8ff5bd8aba3111343338c4 100644 (file)
@@ -6,8 +6,7 @@ namespace Friendica\Module;
 
 use Friendica\BaseModule;
 use Friendica\Core\System;
-use Friendica\Database\dba;
-use Friendica\Database\DBM;
+use Friendica\Database\DBA;
 use Friendica\Model\Contact;
 use Friendica\Model\OpenWebAuthToken;
 use Friendica\Util\HTTPSignature;
@@ -50,9 +49,9 @@ class Owa extends BaseModule
                                                $fields    = ['id', 'url', 'addr', 'pubkey'];
                                                $condition = ['id' => $cid];
 
-                                               $contact = dba::selectFirst('contact', $fields, $condition);
+                                               $contact = DBA::selectFirst('contact', $fields, $condition);
 
-                                               if (DBM::is_result($contact)) {
+                                               if (DBA::isResult($contact)) {
                                                        // Try to verify the signed header with the public key of the contact record
                                                        // we have found.
                                                        $verified = HTTPSignature::verify('', $contact['pubkey']);