diff options
author | friendica <info@friendica.com> | 2012-11-10 20:08:07 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-10 20:08:07 -0800 |
commit | dd00fcc7bb3a3b50bd453fddb9a88b7f74d24140 (patch) | |
tree | 60974b787b3b929e939866fa6c311e4d48684168 /mod/zfinger.php | |
parent | ff40eabb7a45c0d012c82d1f629ae599f326d312 (diff) | |
download | volse-hubzilla-dd00fcc7bb3a3b50bd453fddb9a88b7f74d24140.tar.gz volse-hubzilla-dd00fcc7bb3a3b50bd453fddb9a88b7f74d24140.tar.bz2 volse-hubzilla-dd00fcc7bb3a3b50bd453fddb9a88b7f74d24140.zip |
starting to get into the hairy parts of zot - identity, location, and permission synchronisation. After this, messaging should be a piece of cake.
Diffstat (limited to 'mod/zfinger.php')
-rw-r--r-- | mod/zfinger.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/zfinger.php b/mod/zfinger.php index 80411d16c..cc4b8cdd3 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -7,7 +7,7 @@ function zfinger_init(&$a) { $ret = array('success' => false); - $zguid = ((x($_REQUEST,'guid')) ? $_REQUEST['guid'] : ''); + $zhash = ((x($_REQUEST,'guid_hash')) ? $_REQUEST['guid_hash'] : ''); $zaddr = ((x($_REQUEST,'address')) ? $_REQUEST['address'] : ''); $ztarget = ((x($_REQUEST,'target')) ? $_REQUEST['target'] : ''); $zsig = ((x($_REQUEST,'target_sig')) ? $_REQUEST['target_sig'] : ''); @@ -25,8 +25,8 @@ function zfinger_init(&$a) { if(strlen($zguid)) { $r = q("select channel.*, xchan.* from channel left join xchan on channel_hash = xchan_hash - where channel_guid = '%s' limit 1", - dbesc($zguid) + where channel_hash = '%s' limit 1", + dbesc($zhash) ); } elseif(strlen($zaddr)) { |