Issue 6257: Make notes visible again

このコミットが含まれているのは:
Michael 2018-12-13 20:09:19 +00:00
コミット f6c3974c8f
2個のファイルの変更3行の追加3行の削除

ファイルの表示

@ -497,7 +497,7 @@ function conversation(App $a, array $items, Pager $pager, $mode, $update, $previ
}
}
} elseif ($mode === 'notes') {
$items = conversation_add_children($items, false, $order, $uid);
$items = conversation_add_children($items, false, $order, local_user());
$profile_owner = local_user();
if (!$update) {

ファイルの表示

@ -59,7 +59,7 @@ function notes_content(App $a, $update = false)
}
$condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT,
'wall' => false, 'contact-id'=> $a->contact['id']];
'contact-id'=> $a->contact['id']];
$pager = new Pager($a->query_string, 40);
@ -70,7 +70,7 @@ function notes_content(App $a, $update = false)
$count = 0;
if (DBA::isResult($r)) {
$notes = DBA::toArray($r);
$notes = Item::inArray($r);
$count = count($notes);