]> git.mxchange.org Git - friendica.git/commitdiff
invalid thread-id in "nouveau" mode of conversation, bug 245
authorfriendica <info@friendica.com>
Mon, 19 Dec 2011 21:51:55 +0000 (13:51 -0800)
committerfriendica <info@friendica.com>
Mon, 19 Dec 2011 21:51:55 +0000 (13:51 -0800)
boot.php
include/conversation.php

index 5cc77182aa3517352dc128f67ffaf82783e9862d..9f00d8d4b3eac3d36b53e632bacc3201306a7663 100644 (file)
--- 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      );
 
index deced3cb8c834ec1cc05dde58dd65467818ae363..fae57c5655a76352c0835204ca95961508ba6400 100644 (file)
@@ -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'];
 
                        }