1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-06 21:49:20 +00:00

ccache: remove obsolete data on feed/category removal

This commit is contained in:
Andrew Dolgov
2009-03-11 16:22:32 +03:00
parent dee887d102
commit f6fed1b26b
2 changed files with 20 additions and 0 deletions

View File

@@ -702,8 +702,12 @@
if (file_exists($icons_dir . "/$id.ico")) {
unlink($icons_dir . "/$id.ico");
}
ccache_remove($link, $id, $_SESSION["uid"]);
} else {
label_remove($link, -11-$id, $_SESSION["uid"]);
ccache_remove($link, -11-$id, $_SESSION["uid"]);
}
}
}
@@ -992,6 +996,9 @@
if ($num_feeds == 0) {
db_query($link, "DELETE FROM ttrss_feed_categories
WHERE id = '$id' AND owner_uid = " . $_SESSION["uid"]);
ccache_remove($link, $id, $_SESSION["uid"], true);
} else {
print format_warning(__("Unable to delete non empty feed categories."));