diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2019-03-14 10:34:22 +1100 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2019-03-14 10:34:22 +1100 |
commit | f4d733868739da9e8ad32e1544f6deabc26871cd (patch) | |
tree | a9cf19a543f3986378b4efa0b935a24efca68c1a | |
parent | 6a55500c1bc147986e01417724809b19eca92be9 (diff) | |
parent | 6a8c3f82eff7f82bef65cdaf63a9cf260eb441c6 (diff) | |
download | volse-hubzilla-f4d733868739da9e8ad32e1544f6deabc26871cd.tar.gz volse-hubzilla-f4d733868739da9e8ad32e1544f6deabc26871cd.tar.bz2 volse-hubzilla-f4d733868739da9e8ad32e1544f6deabc26871cd.zip |
Merge branch 'dev' of https://gitlab.com/macgirvin/hubzilla into dev
-rwxr-xr-x | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 6bb453bc8..c9c2e2d48 100755 --- a/include/items.php +++ b/include/items.php @@ -763,11 +763,11 @@ function get_item_elements($x,$allow_code = false) { // check the supplied signature against the supplied content. // Note that we will purify the content which could change it. - $r = q("select xchan_pubkey from xchan where xchan_hash = '%s' limit 1", + $r = q("select xchan_pubkey, xchan_network from xchan where xchan_hash = '%s' limit 1", dbesc($arr['author_xchan']) ); if($r) { - if($r[0]['xchan_pubkey']) { + if($r[0]['xchan_pubkey'] && $r[0]['xchan_network'] === 'zot') { if(rsa_verify($x['body'],base64url_decode($arr['sig']),$r[0]['xchan_pubkey'])) { $arr['item_verified'] = 1; } |