aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository/EntryRepository.php')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index 9f25ad4c..dab84635 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -535,7 +535,7 @@ class EntryRepository extends EntityRepository
535 $qb->leftJoin('e.tags', 't'); 535 $qb->leftJoin('e.tags', 't');
536 $qb->andWhere('t.id is null'); 536 $qb->andWhere('t.id is null');
537 break; 537 break;
538 case 'with_annotations': 538 case 'annotated':
539 $qb->leftJoin('e.annotations', 'a'); 539 $qb->leftJoin('e.annotations', 'a');
540 $qb->andWhere('a.id is not null'); 540 $qb->andWhere('a.id is not null');
541 break; 541 break;