]> git.mxchange.org Git - friendica.git/blobdiff - mod/notes.php
Frio: new photos upload template (#5637)
[friendica.git] / mod / notes.php
index 3bc9e0fadebbd1c16bc98a32dcb4147d9711f777..608d01cf8c63fbf1ed718788ab0eba5f5ffd3db6 100644 (file)
@@ -7,7 +7,6 @@ use Friendica\App;
 use Friendica\Content\Nav;
 use Friendica\Core\L10n;
 use Friendica\Database\DBA;
-use Friendica\Database\DBM;
 use Friendica\Model\Item;
 use Friendica\Model\Profile;
 
@@ -60,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, 'allow_cid' => '<' . $a->contact['id'] . '>', 'contact-id'=> $a->contact['id']];
+               'wall' => false, 'contact-id'=> $a->contact['id']];
 
        $a->set_pager_itemspage(40);
 
@@ -70,7 +69,7 @@ function notes_content(App $a, $update = false)
 
        $count = 0;
 
-       if (DBM::is_result($r)) {
+       if (DBA::isResult($r)) {
                $count = count($r);
                $parents_arr = [];
 
@@ -82,7 +81,7 @@ function notes_content(App $a, $update = false)
                $condition = ['uid' => local_user(), 'parent' => $parents_arr];
                $result = Item::selectForUser(local_user(), [], $condition);
 
-               if (DBM::is_result($result)) {
+               if (DBA::isResult($result)) {
                        $items = conv_sort(Item::inArray($result), 'commented');
                        $o .= conversation($a, $items, 'notes', $update);
                }