summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-16 18:47:58 +0100
committerAndrew Dolgov <[email protected]>2005-11-16 18:47:58 +0100
commit4668523d7ceb98d033c6602f6b0d1540f1e49103 (patch)
tree85780efb2c80ed9383c12b9fb2e34c3534bfc7d6 /backend.php
parent4769ddaf7204bf096f8e0e6204a26f3ad328c71a (diff)
printFeedEntry now expects $link
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/backend.php b/backend.php
index 06563e689..e70fc9d7e 100644
--- a/backend.php
+++ b/backend.php
@@ -164,7 +164,7 @@
if ($num_starred > 0) $class .= "Unread";
printFeedEntry(-1, $class, "Starred articles", $num_starred,
- "images/mark_set.png");
+ "images/mark_set.png", $link);
if (get_pref($link, 'ENABLE_LABELS')) {
@@ -193,7 +193,7 @@
error_reporting (E_ERROR | E_WARNING | E_PARSE);
printFeedEntry(-$line["id"]-11,
- $class, $line["description"], $count, "images/label.png");
+ $class, $line["description"], $count, "images/label.png", $link);
}
}
@@ -237,7 +237,7 @@
$total_unread += $unread;
- printFeedEntry($feed_id, $class, $feed, $unread, "icons/$feed_id.ico");
+ printFeedEntry($feed_id, $class, $feed, $unread, "icons/$feed_id.ico", $link);
++$lnum;
}
@@ -267,7 +267,7 @@
$class .= "Unread";
}
- printFeedEntry($tag, $class, $tag, $unread, "images/tag.png");
+ printFeedEntry($tag, $class, $tag, $unread, "images/tag.png", $link);
}