X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotes.php;h=b5bdbf870f8c2031031620c57a792c9eedb354ec;hb=3395c6164998eecad9e573c3da476b08defae790;hp=11ec8a035230b6005351c6466a052eb7155103c0;hpb=15b93b4459f051c1cf6d394a597399f17f9748f3;p=friendica.git diff --git a/mod/notes.php b/mod/notes.php index 11ec8a0352..b5bdbf870f 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -1,6 +1,6 @@ '', ]; - $o .= status_editor($a, $x, $a->getContactId()); + $o .= DI::conversation()->statusEditor($x, $a->getContactId()); } $condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT, @@ -84,7 +84,7 @@ function notes_content(App $a, $update = false) $count = count($notes); - $o .= conversation($a, $notes, 'notes', $update); + $o .= DI::conversation()->create($notes, 'notes', $update); } $o .= $pager->renderMinimal($count);