summaryrefslogtreecommitdiff
path: root/classes/labels.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-06 08:29:32 +0300
committerAndrew Dolgov <[email protected]>2018-12-06 08:29:32 +0300
commitfd10614f5df59968234ed25f46a5c109eca953f6 (patch)
tree2e6c4de7504736bd9dafb6f41c9bde22840fd3db /classes/labels.php
parent0a41c1a6e1e4d822d5ec970e918f83e7104b60f6 (diff)
labels: unfortunately we can't rely on caption to selectively clear label_cache (because of json unicode encoding) so clean it completely if label is updated
Diffstat (limited to 'classes/labels.php')
-rw-r--r--classes/labels.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/labels.php b/classes/labels.php
index fd9e454bb..19d060617 100644
--- a/classes/labels.php
+++ b/classes/labels.php
@@ -163,8 +163,8 @@ class Labels
/* Remove cached data */
$sth = $pdo->prepare("UPDATE ttrss_user_entries SET label_cache = ''
- WHERE label_cache LIKE ? AND owner_uid = ?");
- $sth->execute(["%$caption%", $owner_uid]);
+ WHERE owner_uid = ?");
+ $sth->execute([$owner_uid]);
}