disable UPD detection for 1.0.3

This commit is contained in:
Andrew Dolgov 2005-09-07 15:51:24 +01:00
parent 20fcff19c6
commit c4b0722c31
1 changed files with 5 additions and 2 deletions

View File

@ -369,7 +369,7 @@
// printf("%d %s - %d %s<br>", strtotime($line["last_read"]), $line["last_read"],
// strtotime($line["updated"]), $line["updated"]);
if ($line["last_read"] && $line["updated"] &&
/* if ($line["last_read"] && $line["updated"] &&
strtotime($line["last_read"]) < strtotime($line["updated"]) &&
($line["unread"] == "f" || $line["unread"] == "0")) {
@ -379,7 +379,10 @@
} else {
$update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.png\"
alt=\"Updated\">";
}
} */
$update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.png\"
alt=\"Updated\">";
if ($line["unread"] == "t" || $line["unread"] == "1") {
$class .= "Unread";