From: Andrew Dolgov Date: Thu, 5 Jan 2006 16:00:01 +0000 (+0100) Subject: rename variable in feedEditSave (closes #28) X-Git-Tag: schema_freeze_for_1.1.2~14 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=b0da3a7b0c0611c592e098150077495cfdc2e63e;p=tt-rss.git rename variable in feedEditSave (closes #28) --- diff --git a/prefs.js b/prefs.js index d23cf2d3..8b6aaf66 100644 --- a/prefs.js +++ b/prefs.js @@ -699,7 +699,11 @@ function feedEditSave() { var purge_intl = document.getElementById("iedit_purgintl").value; var fcat = document.getElementById("iedit_fcat"); - var private = document.getElementById("iedit_private").checked; + var is_pvt = document.getElementById("iedit_is_pvt"); + + if (is_pvt) { + is_pvt = is_pvt.checked; + } var fcat_id = 0; @@ -732,16 +736,16 @@ function feedEditSave() { "&ui=" + param_escape(upd_intl) + "&pi=" + param_escape(purge_intl) + "&catid=" + param_escape(fcat_id) + "&login=" + param_escape(auth_login) + "&pfeed=" + param_escape(parent_feed_id) + "&pass=" + param_escape(auth_pass) + - "&private=" + param_escape(private); + "&is_pvt=" + param_escape(is_pvt); xmlhttp.open("POST", "backend.php", true); xmlhttp.onreadystatechange=feedlist_callback; xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); - xmlhttp.send(query); + xmlhttp.send(query); } catch (e) { exception_error("feedEditSave", e); - } + } } function feedCatEditSave() {