From: friendica <info@friendica.com>
Date: Mon, 19 Dec 2011 21:51:55 +0000 (-0800)
Subject: invalid thread-id in "nouveau" mode of conversation, bug 245
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7c6bc5a93d50de8e15d6158aa3dae7936097dbec;p=friendica.git

invalid thread-id in "nouveau" mode of conversation, bug 245
---

diff --git a/boot.php b/boot.php
index 5cc77182aa..9f00d8d4b3 100644
--- a/boot.php
+++ b/boot.php
@@ -9,7 +9,7 @@ require_once('include/nav.php');
 require_once('include/cache.php');
 
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
-define ( 'FRIENDICA_VERSION',      '2.3.1199' );
+define ( 'FRIENDICA_VERSION',      '2.3.1200' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.22'    );
 define ( 'DB_UPDATE_VERSION',      1112      );
 
diff --git a/include/conversation.php b/include/conversation.php
index deced3cb8c..fae57c5655 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'];
 
 			}