From: Andrew Dolgov Date: Fri, 30 Dec 2005 20:31:34 +0000 (+0100) Subject: disallow ability to link the feed to itself X-Git-Tag: schema_freeze_for_1.1.2~22 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=262c2426c5962b003424917f3e8c5283b1e3f0b6;p=tt-rss.git disallow ability to link the feed to itself --- diff --git a/backend.php b/backend.php index a7066755..52b4f346 100644 --- a/backend.php +++ b/backend.php @@ -1697,7 +1697,6 @@ $linked_count = db_fetch_result($tmp_result, 0, "count"); - $parent_feed = db_fetch_result($result, 0, "parent_feed"); if ($linked_count > 0) { @@ -1717,7 +1716,8 @@ } $tmp_result = db_query($link, "SELECT id,title FROM ttrss_feeds - WHERE owner_uid = ".$_SESSION["uid"]." $cat_qpart ORDER BY title"); + WHERE id != '$feed_id' AND owner_uid = ".$_SESSION["uid"]." + $cat_qpart ORDER BY title"); if (db_num_rows($tmp_result) > 0) { print "";