From: Jeremy Benoist Date: Thu, 3 Aug 2017 10:46:20 +0000 (+0200) Subject: Multiple tag search was broken from API X-Git-Tag: 2.3.0~31^2~13^2~2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=7c04b7396a296e31bb11beadc19550396ee728a8;hp=7c04b7396a296e31bb11beadc19550396ee728a8;p=github%2Fwallabag%2Fwallabag.git Multiple tag search was broken from API First, the setParameter() were done on the same parameter which in fact just duplicated the condition in the SQL query (like `where t.label = 'test' and t.label = 'test'`. Changed the parameter doesn't help because the query was then wrong. Changing the way to match associated tags for an entry and it worked. ---