From: Andrew Dolgov Date: Fri, 18 Nov 2005 13:12:09 +0000 (+0100) Subject: fix crosslink bug in update_feed X-Git-Tag: schema_feature_freeze_for_1.1~214 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=4e90d6d2737ede378c43669797eaed9c2752358c;p=tt-rss.git fix crosslink bug in update_feed --- diff --git a/functions.php b/functions.php index 8bf146d7..6aa9f430 100644 --- a/functions.php +++ b/functions.php @@ -269,7 +269,9 @@ FROM ttrss_entries WHERE - guid = '$entry_guid' AND owner_uid = " . $_SESSION["uid"]); + guid = '$entry_guid' AND + owner_uid = " . $_SESSION["uid"]." AND + feed_id = '$feed'"); // print db_num_rows($result) . "$entry_guid
";