diff options
author | Friendika <info@friendika.com> | 2011-05-03 18:05:11 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-03 18:05:11 -0700 |
commit | 64a7d0b578ae3264eb65bd4ad1c20a38d63cf3bf (patch) | |
tree | 83be367bfcebb891946a503f18373f39cdf8be7d /include | |
parent | 6c1d587ae3609fbf9670786b9ce807d104fe774d (diff) | |
download | volse-hubzilla-64a7d0b578ae3264eb65bd4ad1c20a38d63cf3bf.tar.gz volse-hubzilla-64a7d0b578ae3264eb65bd4ad1c20a38d63cf3bf.tar.bz2 volse-hubzilla-64a7d0b578ae3264eb65bd4ad1c20a38d63cf3bf.zip |
lost comment boxes on status.net conversations
Diffstat (limited to 'include')
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index 1558a5c41..7c30c01c2 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -225,7 +225,7 @@ function conversation(&$a, $items, $mode, $update) { $comments = array(); foreach($items as $item) { - if(intval($item['gravity']) == 6) { + if((intval($item['gravity']) == 6) && ($item['id'] != $item['parent'])) { if(! x($comments,$item['parent'])) $comments[$item['parent']] = 1; else |