diff options
author | friendica <info@friendica.com> | 2011-12-19 13:51:55 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-19 13:51:55 -0800 |
commit | 7c6bc5a93d50de8e15d6158aa3dae7936097dbec (patch) | |
tree | 26d288b471d9a1737556771261430ff29e9b2974 /include/conversation.php | |
parent | 177af1fc9d286c4ecc7e5ce43e17f492b9e11817 (diff) | |
download | volse-hubzilla-7c6bc5a93d50de8e15d6158aa3dae7936097dbec.tar.gz volse-hubzilla-7c6bc5a93d50de8e15d6158aa3dae7936097dbec.tar.bz2 volse-hubzilla-7c6bc5a93d50de8e15d6158aa3dae7936097dbec.zip |
invalid thread-id in "nouveau" mode of conversation, bug 245
Diffstat (limited to 'include/conversation.php')
-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 deced3cb8..fae57c565 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -294,7 +294,7 @@ function conversation(&$a, $items, $mode, $update) { $arr = array('item' => $item, 'output' => $tmp_item); call_hooks('display_item', $arr); - $threads[$threadsid]['id'] = $arr[$item['item_id']]; + $threads[$threadsid]['id'] = $item['item_id']; $threads[$threadsid]['html'] .= $arr['output']; } |