mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-27 03:21:01 +00:00
Add missing parameters
Parameters weren’t passed to the sub function.
This commit is contained in:
parent
495f83c925
commit
17476f4d8d
1 changed files with 1 additions and 1 deletions
|
@ -450,7 +450,7 @@ class EntryRepository extends EntityRepository
|
|||
*/
|
||||
private function getSortedQueryBuilderByUser($userId, $sortBy = 'createdAt', $direction = 'desc')
|
||||
{
|
||||
return $this->sortQueryBuilder($this->getQueryBuilderByUser($userId));
|
||||
return $this->sortQueryBuilder($this->getQueryBuilderByUser($userId), $sortBy, $direction);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue