diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-30 19:41:22 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-30 19:41:22 -0700 |
commit | abe6a3286e80359d03a9f45ee86657bf84a47ac2 (patch) | |
tree | 812117e547a6dc41b5f34922fd66c2920064f196 /mod/dfrn_confirm.php | |
parent | 7ad27f5737b4c3dc800c8a707a3010ec33672389 (diff) | |
download | volse-hubzilla-abe6a3286e80359d03a9f45ee86657bf84a47ac2.tar.gz volse-hubzilla-abe6a3286e80359d03a9f45ee86657bf84a47ac2.tar.bz2 volse-hubzilla-abe6a3286e80359d03a9f45ee86657bf84a47ac2.zip |
pubsubhubbub endpoint
Diffstat (limited to 'mod/dfrn_confirm.php')
-rw-r--r-- | mod/dfrn_confirm.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 584358507..5808b6fec 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -239,8 +239,7 @@ function dfrn_confirm_post(&$a) { $pubkey = openssl_pkey_get_details($res); $public_key = $pubkey["key"]; - $r = q("UPDATE `contact` SET `issued-pubkey` = '%s', `prvkey` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", - dbesc($public_key), + $r = q("UPDATE `contact` SET `prvkey` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", dbesc($private_key), intval($contact_id), intval($uid) |