diff --git a/eZ/Publish/Core/Repository/BookmarkService.php b/eZ/Publish/Core/Repository/BookmarkService.php index d720a1b86b..266d0d8fa5 100644 --- a/eZ/Publish/Core/Repository/BookmarkService.php +++ b/eZ/Publish/Core/Repository/BookmarkService.php @@ -104,7 +104,7 @@ public function loadBookmarks(int $offset = 0, int $limit = 25): BookmarkList try { $filter ->withCriterion(new Criterion\Bookmark($currentUserId)) - ->withSortClause(new SortClause\DatePublished(Query::SORT_ASC)) + ->withSortClause(new SortClause\DatePublished(Query::SORT_DESC)) ->sliceBy($limit, $offset); $result = $this->repository->getlocationService()->find($filter, []);