diff --git a/functions.php b/functions.php
index f2800552f..8367dcaa1 100644
--- a/functions.php
+++ b/functions.php
@@ -5007,7 +5007,7 @@
$cur_feed_title = htmlspecialchars($cur_feed_title);
- $vf_catchup_link = "(mark as read)";
+ $vf_catchup_link = "(mark as read)";
print "
| ".
" $feed_icon_img ".
@@ -5088,7 +5088,7 @@
$cur_feed_title = htmlspecialchars($cur_feed_title);
- $vf_catchup_link = "(mark as read)";
+ $vf_catchup_link = "(mark as read)";
$has_feed_icon = is_file(ICONS_DIR . "/$feed_id.ico");
diff --git a/tt-rss.js b/tt-rss.js
index 870c64028..77c4730ac 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -718,12 +718,20 @@ function catchupCurrentFeed() {
}
}
-function catchupFeedInGroup(id, title) {
+function catchupFeedInGroup(id) {
- var str = __("Mark all articles in %s as read?").replace("%s", title);
+ try {
- if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
- return viewCurrentFeed('MarkAllReadGR:' + id)
+ var title = getFeedName(id);
+
+ var str = __("Mark all articles in %s as read?").replace("%s", title);
+
+ if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
+ return viewCurrentFeed('MarkAllReadGR:' + id)
+ }
+
+ } catch (e) {
+ exception_error("catchupFeedInGroup", e);
}
}
|