X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotes.php;h=01e6e5ab991d7712343ab746bfb432aa8c517b9d;hb=f2e2066d339dcd4f732219857a3bd9cb3144911b;hp=da8352966e721e3f2c7698dc51668efa33db5967;hpb=14e7686df4250169de91c4db2912b1934cc4800f;p=friendica.git diff --git a/mod/notes.php b/mod/notes.php index da8352966e..01e6e5ab99 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -5,6 +5,7 @@ use Friendica\App; use Friendica\Content\Nav; +use Friendica\Content\Pager; use Friendica\Core\L10n; use Friendica\Database\DBA; use Friendica\Model\Item; @@ -33,7 +34,6 @@ function notes_content(App $a, $update = false) return; } - require_once 'include/security.php'; require_once 'include/conversation.php'; $o = Profile::getTabs($a, true); @@ -61,10 +61,10 @@ 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']]; - $a->setPagerItemsPage(40); + $pager = new Pager($a->query_string, 40); $params = ['order' => ['created' => true], - 'limit' => [$a->pager['start'], $a->pager['itemspage']]]; + 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]]; $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params); $count = 0; @@ -74,10 +74,10 @@ function notes_content(App $a, $update = false) $count = count($notes); - $o .= conversation($a, $notes, 'notes', $update); + $o .= conversation($a, $notes, $pager, 'notes', $update); } - $o .= alt_pager($a, $count); + $o .= $pager->renderMinimal($count); return $o; }