From 8056ec5011775d1751660ba956f166b28378d073 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 28 Dec 2009 19:34:05 +0300 Subject: properly initialize archived_feed info when removing feed --- functions.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'functions.php') diff --git a/functions.php b/functions.php index e8682ca37..de35b3274 100644 --- a/functions.php +++ b/functions.php @@ -6376,6 +6376,18 @@ db_query($link, "BEGIN"); + /* prepare feed if necessary */ + + $result = db_query($link, "SELECT id FROM ttrss_archived_feeds + WHERE id = '$id'"); + + if (db_num_rows($result) == 0) { + db_query($link, "INSERT INTO ttrss_archived_feeds + (id, owner_uid, title, feed_url, site_url) + SELECT id, owner_uid, title, feed_url, site_url from ttrss_feeds + WHERE id = '$id'"); + } + db_query($link, "UPDATE ttrss_user_entries SET feed_id = NULL WHERE feed_id = '$id' AND marked = true AND owner_uid = $owner_uid"); -- cgit v1.2.3