diff options
author | friendica <info@friendica.com> | 2014-08-28 17:25:00 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-28 17:25:00 -0700 |
commit | ae3047791c5d7a9bd589509bf13dd1c740e6639f (patch) | |
tree | 1170a37b7e61a8d2b5cebaf589822123e69b00d4 /include/conversation.php | |
parent | b27e21472bb6fadcadba5e614cd71a8ce55f7dc1 (diff) | |
download | volse-hubzilla-ae3047791c5d7a9bd589509bf13dd1c740e6639f.tar.gz volse-hubzilla-ae3047791c5d7a9bd589509bf13dd1c740e6639f.tar.bz2 volse-hubzilla-ae3047791c5d7a9bd589509bf13dd1c740e6639f.zip |
when updating the commented timestamp on the parent post (item_store) don't include any time travelling posts. They can mess up the conversation sort order in a big way until they're actually published.
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/conversation.php b/include/conversation.php index b14e609dd..15ce8ce25 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1270,6 +1270,8 @@ function conv_sort($arr,$order) { } } +logger('conv_sort: ' . print_r($ret,true)); + return $ret; } |