diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-10 16:10:56 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-10 16:10:56 -0700 |
commit | abbf245d1471f8038843c74541fb2f8a704dc8a4 (patch) | |
tree | e72aa693a58e003cb22fa3e97fda75d911a69970 /Zotlabs/Module/Channel.php | |
parent | 67024c023aed13070296c6e44644e489ff5f2417 (diff) | |
download | volse-hubzilla-abbf245d1471f8038843c74541fb2f8a704dc8a4.tar.gz volse-hubzilla-abbf245d1471f8038843c74541fb2f8a704dc8a4.tar.bz2 volse-hubzilla-abbf245d1471f8038843c74541fb2f8a704dc8a4.zip |
remove item_thread_top from simple_update query - we're already fetching distinct(parent) and this prevented comments from displaying after submission when remote-authed.
Diffstat (limited to 'Zotlabs/Module/Channel.php')
-rw-r--r-- | Zotlabs/Module/Channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index d82ed8e5d..4ffc9ffc6 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -194,7 +194,7 @@ class Channel extends \Zotlabs\Web\Controller { $simple_update = ''; if($static && $simple_update) - $simple_update .= " and item_thread_top = 1 and author_xchan = '" . protect_sprintf(get_observer_hash()) . "' "; + $simple_update .= " and author_xchan = '" . protect_sprintf(get_observer_hash()) . "' "; if(($update) && (! $load)) { |