hideOrShowFeedList: fix

This commit is contained in:
Andrew Dolgov 2007-05-11 08:50:02 +01:00
parent 3bd9a780d6
commit 5158ced917
2 changed files with 7 additions and 6 deletions

View File

@ -1525,6 +1525,7 @@ function getInitParam(key) {
function storeInitParam(key, value) {
debug("<b>storeInitParam is OBSOLETE: " + key + " => " + value + "</b>");
init_params[key] = value;
}
function fatalError(code, message) {

View File

@ -544,7 +544,7 @@ function toggleDispRead() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
}
var hide_read_feeds = (getInitParam("hide_read_feeds") == "1");
@ -554,13 +554,13 @@ function toggleDispRead() {
hideOrShowFeeds(getFeedsContext().document, hide_read_feeds);
var query = "backend.php?op=rpc&subop=setpref" +
"&key=HIDE_READ_FEEDS&value=" + param_escape(hide_read_feeds);
storeInitParam("hide_read_feeds", hide_read_feeds, true);
new Ajax.Request(query);
/* var query = "backend.php?op=rpc&subop=setpref" +
"&key=HIDE_READ_FEEDS&value=" + param_escape(hide_read_feeds);
new Ajax.Request(query); */
} catch (e) {
exception_error("toggleDispRead", e);
}