diff options
author | zotlabs <mike@macgirvin.com> | 2016-12-01 18:21:36 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-12-01 18:21:36 -0800 |
commit | 97f9dedaa6d2e4b2b4492bf42f53f516b275e2c7 (patch) | |
tree | 9a9239815bf26c840ae54285eb816fea130b32cc | |
parent | 7f730b81ffe47b9423b9491970730348f87d5113 (diff) | |
download | volse-hubzilla-97f9dedaa6d2e4b2b4492bf42f53f516b275e2c7.tar.gz volse-hubzilla-97f9dedaa6d2e4b2b4492bf42f53f516b275e2c7.tar.bz2 volse-hubzilla-97f9dedaa6d2e4b2b4492bf42f53f516b275e2c7.zip |
sql error in fetch conversation
-rw-r--r-- | include/zot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index 379a9b04c..635ff34b0 100644 --- a/include/zot.php +++ b/include/zot.php @@ -3651,7 +3651,7 @@ function zot_reply_message_request($data) { if ($messages) { $env_recips = null; - $r = q("select hubloc.*, site.site_crypto from hubloc left join site on hulob_url = site_url where hubloc_hash = '%s' and hubloc_error = 0 and hubloc_deleted = 0", + $r = q("select hubloc.*, site.site_crypto from hubloc left join site on hubloc_url = site_url where hubloc_hash = '%s' and hubloc_error = 0 and hubloc_deleted = 0", dbesc($sender_hash) ); if (! $r) { |