]> git.mxchange.org Git - friendica.git/blobdiff - mod/notes.php
Some more "q" calls and deprecated logging replaced
[friendica.git] / mod / notes.php
index 11ec8a035230b6005351c6466a052eb7155103c0..5996c140f19e52bdacb92940b8f2323c4097c360 100644 (file)
@@ -57,7 +57,7 @@ function notes_content(App $a, $update = false)
                        'acl_data' => '',
                ];
 
-               $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);