From 20fcff19c63288054253b80ebe99c510990462cb Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 7 Sep 2005 15:48:12 +0100 Subject: last minute PG fixes --- backend.php | 3 ++- opml.php | 4 +--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/backend.php b/backend.php index 957347967..d6e9e0989 100644 --- a/backend.php +++ b/backend.php @@ -369,7 +369,8 @@ // printf("%d %s - %d %s
", strtotime($line["last_read"]), $line["last_read"], // strtotime($line["updated"]), $line["updated"]); - if (strtotime($line["last_read"]) < strtotime($line["updated"]) && + if ($line["last_read"] && $line["updated"] && + strtotime($line["last_read"]) < strtotime($line["updated"]) && ($line["unread"] == "f" || $line["unread"] == "0")) { $update_pic = "$title ($url)... "; - if (DB_TYPE == "mysql") { - $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); - } + $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); $result = db_query($link, "SELECT id FROM ttrss_feeds WHERE title = '$title' OR feed_url = '$url'"); -- cgit v1.2.3