summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-01 05:13:48 +0100
committerAndrew Dolgov <[email protected]>2006-08-01 05:13:48 +0100
commit0a6c4846cd819d8d0f50e184a45569e70e22ec4d (patch)
tree977ccfa438d2704ce351f1a4075632b322c8ea8f /tt-rss.js
parent59e2aab4687694d6e64d56e8751a1d1eff3fd609 (diff)
category search fixes, search dialog now searches in category view
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/tt-rss.js b/tt-rss.js
index 0a17c14c3..538e3203c 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -12,6 +12,7 @@ var firsttime_update = true;
var last_refetch = 0;
var cookie_lifetime = 0;
var active_feed_id = 0;
+var active_feed_is_cat = false;
var xmlhttp = Ajax.getTransport();
@@ -433,7 +434,7 @@ function quickMenuGo(opid) {
}
if (opid == "qmcSearch") {
- displayDlg("search", getActiveFeedId());
+ displayDlg("search", getActiveFeedId() + ":" + activeFeedIsCat());
return;
}