1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 04:05:55 +00:00

fix label cache being double escaped on save

remove some old-style escaping
This commit is contained in:
Andrew Dolgov
2017-12-02 15:47:28 +03:00
parent 7a1872c1e0
commit e4befe6bf4
3 changed files with 8 additions and 10 deletions

View File

@@ -976,12 +976,12 @@ class Article extends Handler_Protected {
$label_cache = $row["label_cache"];
if ($label_cache) {
$label_cache = json_decode($label_cache, true);
$tmp = json_decode($label_cache, true);
if ($label_cache["no-labels"] == 1)
if (!$tmp || $tmp["no-labels"] == 1)
return $rv;
else
return $label_cache;
return $tmp;
}
}