catchupFeed: use supplied feed id to display title, not active one (closes #425)

This commit is contained in:
Andrew Dolgov 2012-02-22 12:33:08 +04:00
parent ea749a3b5d
commit 9dd22f1ec1
1 changed files with 1 additions and 1 deletions

View File

@ -479,7 +479,7 @@ function getNextUnreadFeed(feed, is_cat) {
function catchupFeed(feed, is_cat) { function catchupFeed(feed, is_cat) {
try { try {
var str = __("Mark all articles in %s as read?"); var str = __("Mark all articles in %s as read?");
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat()); var fn = getFeedName(feed, is_cat);
str = str.replace("%s", fn); str = str.replace("%s", fn);