From 04fe3acb6962d7f6e217b002f8e2995289863b9d Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Wed, 20 Jun 2018 23:29:36 +0200 Subject: [PATCH] port hubzillas OpenWebAuth - fix method call --- src/Module/Owa.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);