]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
fix merge issue 2174/head
authorThomas Citharel <tcit@tcit.fr>
Wed, 29 Jun 2016 18:52:37 +0000 (20:52 +0200)
committerThomas Citharel <tcit@tcit.fr>
Wed, 29 Jun 2016 18:52:37 +0000 (20:52 +0200)
src/Wallabag/CoreBundle/Repository/EntryRepository.php

index 8d2ec9ce4f471d6f0f098dc7ec0558dbbbbe71fb..b543c5ae3799e3b21fcbf5c382462bdccb269c02 100644 (file)
@@ -111,7 +111,8 @@ class EntryRepository extends EntityRepository
 
         if ($since >= 0) {
             $qb->andWhere('e.updatedAt > :since')->setParameter('since', new \DateTime(date('Y-m-d H:i:s', $since)));
-            
+        }
+
         if ('' !== $tags) {
             foreach (explode(',', $tags) as $tag) {
                 $qb->andWhere('t.label = :label')->setParameter('label', $tag);