summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tt-rss.js5
-rw-r--r--tt-rss.php1
2 files changed, 6 insertions, 0 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 9790bb983..a91c38414 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -383,6 +383,11 @@ function quickMenuGo(opid) {
return;
}
+ if (opid == "qmcDigest") {
+ window.location.href = "digest.php";
+ return;
+ }
+
if (opid == "qmcEditFeed") {
if (activeFeedIsCat())
alert(__("You can't edit this kind of feed."));
diff --git a/tt-rss.php b/tt-rss.php
index d26035b90..087582152 100644
--- a/tt-rss.php
+++ b/tt-rss.php
@@ -175,6 +175,7 @@
<option value="qmcCatchupAll"><?php echo __('Mark as read') ?></option>
<option value="qmcShowOnlyUnread"><?php echo __('(Un)hide read feeds') ?></option>
<option disabled="1" value="x"><?php echo __('Other actions:') ?></option>
+ <option value="qmcDigest"><?php echo __('Switch to digest...') ?></option>
<option value="qmcTagCloud"><?php echo __('Show tag cloud...') ?></option>
<option value="qmcAddLabel"><?php echo __('Create label...') ?></option>
<option value="qmcAddFilter"><?php echo __('Create filter...') ?></option>