summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-28 05:03:26 +0100
committerAndrew Dolgov <[email protected]>2006-08-28 05:03:26 +0100
commitf6d6e22ff49d44986f2bbf0e82e0b56a4d7a04ff (patch)
treeb59a2b210c76b66567297bf0825bccad28c68d36 /tt-rss.js
parent4065b60b41194dfc1a5164ddd354f87186dc3f7e (diff)
new option: CONFIRM_FEED_CATCHUP (closes #106)
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 771114d5b..597dd2fa4 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -571,7 +571,7 @@ function catchupCurrentFeed() {
str = "Mark all articles in this category as read?";
} */
- if (confirm(str)) {
+ if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
return viewCurrentFeed('MarkAllRead')
}
}