summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-20 11:28:14 +0100
committerAndrew Dolgov <[email protected]>2006-03-20 11:28:14 +0100
commit70f6dbb10b5354500c7979d4f090f9a8ec9d3092 (patch)
tree533e2f99c0cdfa73087a322a83b53a4615401904 /prefs.js
parent2e73dece90bc7aa0ce9a1d36066d41206d199a27 (diff)
experimental RTL support features (schema, version bump)
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/prefs.js b/prefs.js
index 4a018345f..1d410fd60 100644
--- a/prefs.js
+++ b/prefs.js
@@ -703,10 +703,15 @@ function feedEditSave() {
var fcat = document.getElementById("iedit_fcat");
var is_pvt = document.getElementById("iedit_private");
+ var is_rtl = document.getElementById("iedit_rtl");
if (is_pvt) {
is_pvt = is_pvt.checked;
}
+
+ if (is_rtl) {
+ is_rtl = is_rtl.checked;
+ }
var fcat_id = 0;
@@ -739,7 +744,7 @@ 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) +
- "&is_pvt=" + param_escape(is_pvt);
+ "&is_pvt=" + param_escape(is_pvt) + "&is_rtl=" + param_escape(is_rtl);
xmlhttp.open("POST", "backend.php", true);
xmlhttp.onreadystatechange=feedlist_callback;