diff options
author | friendica <info@friendica.com> | 2012-10-04 03:13:57 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-10-04 03:13:57 -0700 |
commit | ff43d62e445422a40271855dcd9933499da501fa (patch) | |
tree | 2a44942f74e86f1a0f1ad240dc040689a3a776d6 /include/Contact.php | |
parent | e124c9fa5ca046d48eb927fe80706cf6d42f6bff (diff) | |
download | volse-hubzilla-ff43d62e445422a40271855dcd9933499da501fa.tar.gz volse-hubzilla-ff43d62e445422a40271855dcd9933499da501fa.tar.bz2 volse-hubzilla-ff43d62e445422a40271855dcd9933499da501fa.zip |
add hash to channel structure for consistency/redundancy
Diffstat (limited to 'include/Contact.php')
-rw-r--r-- | include/Contact.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/Contact.php b/include/Contact.php index 38c3c3203..9a6d6a973 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -25,12 +25,12 @@ function map_perms($channel,$zguid,$zsig) { $is_contact = true; $contact = $r[0]; } - $r = q("select * from channel where channel_global_id = '%s'", + $r = q("select * from channel where channel_guid = '%s'", dbesc($zguid) ); if($r && count($r)) { foreach($r as $rr) { - if(base64url_encode(rsa_sign($rr['channel_global_id'],$rr['channel_prvkey'])) === $zsig) { + if(base64url_encode(rsa_sign($rr['channel_guid'],$rr['channel_prvkey'])) === $zsig) { $is_site = true; break; } |