reenable UPD support

This commit is contained in:
Andrew Dolgov 2005-09-08 04:31:09 +01:00
parent 14ce54af51
commit c43f77f592
1 changed files with 17 additions and 5 deletions

View File

@ -364,9 +364,6 @@
$id = $line["id"];
$feed_id = $line["feed_id"];
// printf("%d %s - %d %s<br>", 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 = "<img id='FUPDPIC-$id' src=\"images/blank_icon.png\"
alt=\"Updated\">";
// printf("L %d (%s) &gt; U %d (%s) = %d<br>",
// 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 = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
alt=\"Updated\">";
} else {
$update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.png\"
alt=\"Updated\">";
}
if ($line["unread"] == "t" || $line["unread"] == "1") {
$class .= "Unread";