From 0b7cb301f24be1148949fdbb81dd7518e7bd705e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 25 Jul 2006 09:35:22 +0100 Subject: move initParams to invisible iframe --- functions.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'functions.js') diff --git a/functions.js b/functions.js index c6f1e0d03..6473e8698 100644 --- a/functions.js +++ b/functions.js @@ -1308,8 +1308,11 @@ function storeInitParam(key, value, is_client) { if (!is_client) { if (getMainContext().init_params[key] != value) { debug("storeInitParam: " + key + " => " + value); - new Ajax.Request("backend.php?op=rpc&subop=storeParam&key=" + - param_escape(key) + "&value=" + param_escape(value)); + //new Ajax.Request("backend.php?op=rpc&subop=storeParam&key=" + + // param_escape(key) + "&value=" + param_escape(value)); + var f = getMainContext().document.getElementById("backReqBox"); + f.src = "backend.php?op=rpc&subop=storeParam&key=" + + param_escape(key) + "&value=" + param_escape(value); } } getMainContext().init_params[key] = value; -- cgit v1.2.3-54-g00ecf