From: Andrew Dolgov Date: Mon, 28 Dec 2009 16:34:05 +0000 (+0300) Subject: properly initialize archived_feed info when removing feed X-Git-Tag: 1.4.0~128 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=8056ec5011775d1751660ba956f166b28378d073;p=tt-rss.git properly initialize archived_feed info when removing feed --- diff --git a/functions.php b/functions.php index e8682ca3..de35b327 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");