summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-10-08 23:27:51 +0400
committerAndrew Dolgov <[email protected]>2010-10-08 23:27:51 +0400
commitfb45339a81ace9759df5e904860176b2d839d01c (patch)
treeebdec8c11b26bebf4f7c088ce9762fe98bd27fb7
parent6240dabe2169a9353d075413653dfc988dfb1378 (diff)
catchupRelativeToArticle: use confirm_feed_catchup preference
-rw-r--r--viewfeed.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/viewfeed.js b/viewfeed.js
index 73ad35f0a..1b8a1dab0 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -2019,7 +2019,7 @@ function catchupRelativeToArticle(below) {
} else {
var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
- if (confirm(msg)) {
+ if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
for (var i = 0; i < ids_to_mark.length; i++) {
var e = $("RROW-" + ids_to_mark[i]);