Merge pull request #3768 from annando/avoid-sql-error
Avoid SQL error when in Forum view
This commit is contained in:
commit
2ac3db7607
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue
Block a user