diff options
author | Max Kostikov <max@kostikov.co> | 2020-11-15 11:09:44 +0100 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2020-11-15 11:09:44 +0100 |
commit | 38985dc4e2a05e4746e1d0fc7bdb09ec55273e54 (patch) | |
tree | 7be5457bcd756985adc7025db9424972f74a4a6c /Zotlabs/Module/Channel.php | |
parent | 7cf9b85a97829dc6e11fef4dcafeebe746084c1f (diff) | |
parent | e74c52094f218686c59ddb5f6c186f02158cf89a (diff) | |
download | volse-hubzilla-38985dc4e2a05e4746e1d0fc7bdb09ec55273e54.tar.gz volse-hubzilla-38985dc4e2a05e4746e1d0fc7bdb09ec55273e54.tar.bz2 volse-hubzilla-38985dc4e2a05e4746e1d0fc7bdb09ec55273e54.zip |
Merge branch 'dev' into 'dev'
Dev sync
See merge request kostikov/core!1
Diffstat (limited to 'Zotlabs/Module/Channel.php')
-rw-r--r-- | Zotlabs/Module/Channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index 307be048a..dc8e9e1c5 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -60,7 +60,7 @@ class Channel extends Controller { if(Libzot::is_zot_request()) { - $sigdata = HTTPSig::verify(file_get_contents('php://input')); + $sigdata = HTTPSig::verify(file_get_contents('php://input'), EMPTY_STR, 'zot6'); if($sigdata && $sigdata['signer'] && $sigdata['header_valid']) { $data = json_encode(Libzot::zotinfo([ 'address' => $channel['channel_address'], 'target_url' => $sigdata['signer'] ])); |