From: Domovoy Date: Sun, 29 Jul 2012 19:11:19 +0000 (+0200) Subject: Fallback to the old behavior for unhandled conversations mode. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7b2ca538c8acc78b3f7366cdb06434880d7ba3fd;p=friendica.git Fallback to the old behavior for unhandled conversations mode. --- diff --git a/include/conversation.php b/include/conversation.php index 795458d911..8e09589fbb 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -677,6 +677,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false, $thr_c = fa //$tpl = get_markup_template('search_item.tpl'); $tpl = 'search_item.tpl'; + $thr_c = false; foreach($items as $item) { $threadsid++; @@ -1172,6 +1173,9 @@ function conversation(&$a, $items, $mode, $update, $preview = false, $thr_c = fa } } } + else { + $thr_c = false; + } $page_template = get_markup_template("conversation.tpl");