From c43f77f5923def16dda1b45c75b63671e539526c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 8 Sep 2005 04:31:09 +0100 Subject: reenable UPD support --- backend.php | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/backend.php b/backend.php index ae35ee123..329f2783d 100644 --- a/backend.php +++ b/backend.php @@ -364,9 +364,6 @@ $id = $line["id"]; $feed_id = $line["feed_id"]; -// printf("%d %s - %d %s
", strtotime($line["last_read"]), $line["last_read"], -// strtotime($line["updated"]), $line["updated"]); - /* if ($line["last_read"] && $line["updated"] && strtotime($line["last_read"]) < strtotime($line["updated"]) && ($line["unread"] == "f" || $line["unread"] == "0")) { @@ -379,8 +376,23 @@ alt=\"Updated\">"; } */ - $update_pic = "\"Updated\""; +// printf("L %d (%s) > U %d (%s) = %d
", +// strtotime($line["last_read"]), $line["last_read"], +// strtotime($line["updated"]), $line["updated"], +// strtotime($line["last_read"]) >= strtotime($line["updated"])); + + if ($line["last_read"] != "" && $line["updated"] != "" && + strtotime($line["last_read"]) < strtotime($line["updated"])) { + + $update_pic = "\"Updated\""; + + } else { + + $update_pic = "\"Updated\""; + + } if ($line["unread"] == "t" || $line["unread"] == "1") { $class .= "Unread"; -- cgit v1.2.3