port hubzillas OpenWebAuth - fix method call

This commit is contained in:
rabuzarus 2018-06-20 23:29:36 +02:00
parent 3d1822996a
commit 04fe3acb69
1 changed files with 1 additions and 1 deletions

View File

@ -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);