diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-20 23:22:52 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-20 23:22:52 -0700 |
commit | 7a405da3b7b8cb838fa1dddca3860c6b5d9a05df (patch) | |
tree | ccd396a6707f1968fb55a2c92771f222464d3cbc | |
parent | 49cc952825bb9d8b2417f85d9d718b456357b364 (diff) | |
download | volse-hubzilla-7a405da3b7b8cb838fa1dddca3860c6b5d9a05df.tar.gz volse-hubzilla-7a405da3b7b8cb838fa1dddca3860c6b5d9a05df.tar.bz2 volse-hubzilla-7a405da3b7b8cb838fa1dddca3860c6b5d9a05df.zip |
some issues with message-ids and urlencoding (again)
-rw-r--r-- | Zotlabs/Module/Display.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Zotlabs/Module/Display.php b/Zotlabs/Module/Display.php index d9f623d8d..d82ff2a55 100644 --- a/Zotlabs/Module/Display.php +++ b/Zotlabs/Module/Display.php @@ -96,8 +96,7 @@ class Display extends \Zotlabs\Web\Controller { $item_hash = $decoded; $r = q("select id, uid, mid, parent_mid, item_type, item_deleted from item where mid like '%s' limit 1", - dbesc($item_hash . '%'), - dbesc($decoded . '%') + dbesc($item_hash . '%') ); if($r) { |