aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-10-18 11:16:50 +0200
committerGitHub <noreply@github.com>2017-10-18 11:16:50 +0200
commit91f9bacf735e61072d6f0e9f47cc5ec6401193c7 (patch)
treea8837114af6a4aa86f3af36bc7b2f5e697de9ee9 /src/Wallabag/CoreBundle
parent7f5d03a98d59afa171ccc003a48715f13fa3b116 (diff)
parent0978bd849e77b1157b21f8e231965521e535bacd (diff)
downloadwallabag-91f9bacf735e61072d6f0e9f47cc5ec6401193c7.tar.gz
wallabag-91f9bacf735e61072d6f0e9f47cc5ec6401193c7.tar.zst
wallabag-91f9bacf735e61072d6f0e9f47cc5ec6401193c7.zip
Merge pull request #3362 from sviande/fix_3361_api_warning
Fix #3361 check type for tags in entry repository
Diffstat (limited to 'src/Wallabag/CoreBundle')
-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 05f0e0ba..b5e35eff 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -151,7 +151,7 @@ class EntryRepository extends EntityRepository
151 $qb->andWhere('e.updatedAt > :since')->setParameter('since', new \DateTime(date('Y-m-d H:i:s', $since))); 151 $qb->andWhere('e.updatedAt > :since')->setParameter('since', new \DateTime(date('Y-m-d H:i:s', $since)));
152 } 152 }
153 153
154 if ('' !== $tags) { 154 if (is_string($tags) && '' !== $tags) {
155 foreach (explode(',', $tags) as $i => $tag) { 155 foreach (explode(',', $tags) as $i => $tag) {
156 $entryAlias = 'e' . $i; 156 $entryAlias = 'e' . $i;
157 $tagAlias = 't' . $i; 157 $tagAlias = 't' . $i;