1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 00:41:28 +00:00

add separate indicator for fresh articles

This commit is contained in:
Andrew Dolgov
2009-08-21 15:24:18 +04:00
parent 9897ca6772
commit 784ac51f88
3 changed files with 13 additions and 3 deletions

View File

@@ -4926,6 +4926,8 @@
$num_unread = 0;
$cur_feed_title = '';
$fresh_intl = get_pref($link, "FRESH_ARTICLE_MAX_AGE") * 60 * 60;
while ($line = db_fetch_assoc($result)) {
$class = ($lnum % 2) ? "even" : "odd";
@@ -4943,8 +4945,7 @@
array_push($topmost_article_ids, $id);
}
if ($line["last_read"] == "" &&
($line["unread"] != "t" && $line["unread"] != "1")) {
if ($line["last_read"] == "" && !sql_bool_to_bool($line["unread"])) {
$update_pic = "<img id='FUPDPIC-$id' src=\"images/updated.png\"
alt=\"Updated\">";
@@ -4952,6 +4953,13 @@
$update_pic = "<img id='FUPDPIC-$id' src=\"images/blank_icon.gif\"
alt=\"Updated\">";
}
if (sql_bool_to_bool($line["unread"]) &&
time() - strtotime($line["updated_noms"]) < $fresh_intl) {
$update_pic = "<img id='FUPDPIC-$id' src=\"images/fresh_sign.png\"
alt=\"Fresh\">";
}
if ($line["unread"] == "t" || $line["unread"] == "1") {
$class .= "Unread";