]> git.mxchange.org Git - friendica.git/blobdiff - mod/notes.php
Some more "exit" replaced
[friendica.git] / mod / notes.php
index fd8763b9652ea3278330a90edbac3d80fb0c868a..b5bdbf870f8c2031031620c57a792c9eedb354ec 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -45,7 +45,7 @@ function notes_content(App $a, $update = false)
                return;
        }
 
-       $o = BaseProfile::getTabsHTML($a, 'notes', true, $a->getNickname(), false);
+       $o = BaseProfile::getTabsHTML($a, 'notes', true, $a->getLoggedInUserNickname(), false);
 
        if (!$update) {
                $o .= '<h3>' . DI::l10n()->t('Personal Notes') . '</h3>';
@@ -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);