From 5715d5f4c7a628c175fe9fea17210ca3151cd601 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 2 Sep 2014 22:50:32 -0700 Subject: fix diaspora_handle_from_contact() --- include/diaspora.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/diaspora.php b/include/diaspora.php index dbf906169..477f82914 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -269,8 +269,8 @@ function diaspora_handle_from_contact($contact_hash) { logger("diaspora_handle_from_contact: contact id is " . $contact_hash, LOGGER_DEBUG); - $r = q("SELECT * from abook left join xchan on abook_xchan = xchan_hash where abook_xchan = '%s' limit 1", - intval($contact_hash) + $r = q("SELECT xchan_addr from xchan where xchan_hash = '%s' limit 1", + dbesc($contact_hash) ); if($r) { return $r[0]['xchan_addr']; -- cgit v1.2.3