From 262c2426c5962b003424917f3e8c5283b1e3f0b6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 30 Dec 2005 21:31:34 +0100 Subject: [PATCH] disallow ability to link the feed to itself --- backend.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ""; -- 2.39.2