From: Andrew Dolgov Date: Sat, 1 Sep 2007 04:49:52 +0000 (+0100) Subject: update_rss_feed: check whether feed id is valid X-Git-Tag: 1.2.15~13 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=5370d37f7fecb245104af615864c98371d92261d;p=tt-rss.git update_rss_feed: check whether feed id is valid --- diff --git a/functions.php b/functions.php index d8faef6a..a9b0eeec 100644 --- a/functions.php +++ b/functions.php @@ -432,9 +432,16 @@ _debug("update_rss_feed: start"); } - $result = db_query($link, "SELECT update_interval,auth_login,auth_pass,cache_images + $result = db_query($link, "SELECT id,update_interval,auth_login,auth_pass,cache_images FROM ttrss_feeds WHERE id = '$feed'"); + if (db_num_rows($result) == 0) { + if (defined('DAEMON_EXTENDED_DEBUG') || $_GET['xdebug']) { + _debug("update_rss_feed: feed $feed [$feed_url] NOT FOUND"); + } + return; + } + $auth_login = db_fetch_result($result, 0, "auth_login"); $auth_pass = db_fetch_result($result, 0, "auth_pass");