Avoid SQL error when in Forum view

This commit is contained in:
Michael 2017-10-07 21:51:03 +00:00
parent 829e8ca946
commit ecce105ae8
1 changed files with 2 additions and 1 deletions

View File

@ -856,11 +856,12 @@ function networkThreadedView(App $a, $update = 0) {
if (!$group && !$cid && !$star) {
$condition = array('unseen' => true, 'uid' => local_user());
networkSetSeen($condition);
} elseif ($parents_str) {
$condition = array("`uid` = ? AND `unseen` AND `parent` IN (" . dbesc($parents_str) . ")", local_user());
networkSetSeen($condition);
}
networkSetSeen($condition);
$mode = 'network';
$o .= networkConversation($a, $items, $mode, $update);