1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-23 02:01:28 +00:00

experimental RTL support features (schema, version bump)

This commit is contained in:
Andrew Dolgov
2006-03-20 11:28:14 +01:00
parent 2e73dece90
commit 70f6dbb10b
9 changed files with 86 additions and 15 deletions

View File

@@ -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;