diff options
author | friendica <info@friendica.com> | 2012-08-08 18:50:04 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-08 18:50:04 -0700 |
commit | 9a39d4ade21af15e9d6a3aae1f467f0d173cc0de (patch) | |
tree | 569a3839709bf452b44515dc8c6d3f887f78b9dc /include/zot.php | |
parent | c28da5673731acbedecb4209c38b72046db597e1 (diff) | |
download | volse-hubzilla-9a39d4ade21af15e9d6a3aae1f467f0d173cc0de.tar.gz volse-hubzilla-9a39d4ade21af15e9d6a3aae1f467f0d173cc0de.tar.bz2 volse-hubzilla-9a39d4ade21af15e9d6a3aae1f467f0d173cc0de.zip |
moving forward again
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/zot.php b/include/zot.php index 6fe202aa8..f978971ea 100644 --- a/include/zot.php +++ b/include/zot.php @@ -52,15 +52,16 @@ function zot_sign(&$item,$identity) { // Given an item and an identity, verify the signature. function zot_verify(&$item,$identity) { - return rsa_verify($item[signed'],base64url_decode($item['signature']),$identity['pubkey']); + return rsa_verify($item['signed'],base64url_decode($item['signature']),$identity['pubkey']); } function zot_notify($entity,$url) { $x = z_post_url($url, array( - 'zot_uid' => $entity['entity_global_id'], - 'callback' => z_root() . '/zot', + 'type' => 'notify', + 'guid' => $entity['entity_global_id'], + 'callback' => z_root() . '/post', 'spec' => ZOT_REVISION) ); return($x); |