summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-17 11:14:45 +0100
committerAndrew Dolgov <[email protected]>2009-01-17 11:14:45 +0100
commit3d72bbdb4f4cb35c40aa61199dc6b3265cc5c9b6 (patch)
treea030024f7127b0b3ac488ad75e61be0aef7d734d /functions.js
parent617698d71010d43161b968811f50e0edce25dc1a (diff)
active_feed_is_cat, active_feed_id handling changes
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/functions.js b/functions.js
index 9456a6a25..034e463d1 100644
--- a/functions.js
+++ b/functions.js
@@ -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 {