From: rabuzarus Date: Wed, 20 Jun 2018 21:29:36 +0000 (+0200) Subject: port hubzillas OpenWebAuth - fix method call X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=04fe3acb6962d7f6e217b002f8e2995289863b9d;p=friendica.git port hubzillas OpenWebAuth - fix method call --- diff --git a/src/Module/Owa.php b/src/Module/Owa.php index c1948f3b64..306c525c06 100644 --- a/src/Module/Owa.php +++ b/src/Module/Owa.php @@ -56,7 +56,7 @@ class Owa extends BaseModule if (DBM::is_result($contact)) { // Try to verify the signed header with the public key of the contact record // we have found. - $verified = HTTPSig::verify('', $contact['pubkey']); + $verified = HTTPSignature::verify('', $contact['pubkey']); if ($verified && $verified['header_signed'] && $verified['header_valid']) { logger('OWA header: ' . print_r($verified, true), LOGGER_DATA);