1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:55:56 +00:00

new option: CONFIRM_FEED_CATCHUP (closes #106)

This commit is contained in:
Andrew Dolgov
2006-08-28 05:03:26 +01:00
parent 4065b60b41
commit f6d6e22ff4
6 changed files with 12 additions and 1 deletions

View File

@@ -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')
}
}