summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-09-07 15:48:12 +0100
committerAndrew Dolgov <[email protected]>2005-09-07 15:48:12 +0100
commit20fcff19c63288054253b80ebe99c510990462cb (patch)
treee0b9b43e8a08c27ca5b09a7d7c31f767a7cf8fbe
parent763f2268984bd7e1d9ed962e7756f420304f7d5a (diff)
last minute PG fixes
-rw-r--r--backend.php3
-rw-r--r--opml.php4
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<br>", 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 = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
diff --git a/opml.php b/opml.php
index 67ed91397..0e601e111 100644
--- a/opml.php
+++ b/opml.php
@@ -43,9 +43,7 @@
print "Feed <b>$title</b> ($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'");