Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Fixes issue with all tags not showing when filtering by tag #269

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Entity/PostManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function getPager(array $criteria, $page, $limit = 10, array $sort = arra
$parameters = array();
$query = $this->getRepository()
->createQueryBuilder('p')
->select('p, t')
->select('p')
->orderBy('p.publicationDateStart', 'DESC');

if ($criteria['mode'] == 'admin') {
Expand Down