1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:55:55 +00:00

active_feed_is_cat, active_feed_id handling changes

This commit is contained in:
Andrew Dolgov
2009-01-17 11:14:45 +01:00
parent 617698d710
commit 3d72bbdb4f
7 changed files with 62 additions and 54 deletions

View File

@@ -406,30 +406,6 @@ function gotoExportOpml() {
document.location.href = "opml.php?op=Export";
}
function getActiveFeedId() {
// return getCookie("ttrss_vf_actfeed");
try {
debug("gAFID: " + active_feed_id);
return active_feed_id;
} catch (e) {
exception_error("getActiveFeedId", e);
}
}
function activeFeedIsCat() {
return active_feed_is_cat;
}
function setActiveFeedId(id) {
// return setCookie("ttrss_vf_actfeed", id);
try {
debug("sAFID(" + id + ")");
active_feed_id = id;
} catch (e) {
exception_error("setActiveFeedId", e);
}
}
function parse_counters(reply, scheduled_call) {
try {