summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-10-18 18:32:57 +0400
committerAndrew Dolgov <[email protected]>2010-10-18 18:32:57 +0400
commit9c57be20a28074bc13e924931106f2543ca478b5 (patch)
tree819eed091840ab25c0997329fb25f79946ea5883 /viewfeed.js
parent7b20c977802b3ec33f05dd66814ebc9d995bc4a3 (diff)
parentf95ac2755a918ddaec4937d441b893a53467ed88 (diff)
Merge branch 'master' of madoka.volgo-balt.ru:public_html/testbox/tt-rss
Diffstat (limited to 'viewfeed.js')
-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]);