X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fall.php;h=2826319c0d9e59ffc56c0de40e9d561efdc418f0;hb=865c1bc27838a1b7ee41ff513d30d2c8c6f4cd10;hp=12397b4b1821dd076e7f1e8c7a1bc129ff30e4e9;hpb=934ae38acd4c9152141ab5559d5e698a8a33645c;p=quix0rs-gnu-social.git diff --git a/actions/all.php b/actions/all.php index 12397b4b18..2826319c0d 100644 --- a/actions/all.php +++ b/actions/all.php @@ -58,9 +58,9 @@ class AllAction extends ProfileAction $cur = common_current_user(); if (!empty($cur) && $cur->id == $this->user->id) { - $this->notice = $this->user->noticeInbox(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); + $this->notice = $this->user->noticeInboxThreaded(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); } else { - $this->notice = $this->user->noticesWithFriends(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); + $this->notice = $this->user->noticesWithFriendsThreaded(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1); } if ($this->page > 1 && $this->notice->N == 0) { @@ -127,12 +127,6 @@ class AllAction extends ProfileAction ); } - function showLocalNav() - { - $nav = new PersonalGroupNav($this); - $nav->show(); - } - function showEmptyListMessage() { // TRANS: Empty list message. %s is a user nickname.