1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 03:01:29 +00:00

more MSIE compatibility fixes

This commit is contained in:
Andrew Dolgov
2005-09-08 06:02:49 +01:00
parent 397f428bc5
commit 25cb57366a
3 changed files with 12 additions and 5 deletions

View File

@@ -120,8 +120,10 @@ function addFilter() {
} else {
notify("Adding filter...");
var v_match = match[match.selectedIndex].text;
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add&regexp=" +
param_escape(regexp.value) + "&match=" + match.value, true);
param_escape(regexp.value) + "&match=" + v_match, true);
xmlhttp.onreadystatechange=filterlist_callback;
xmlhttp.send(null);
@@ -375,7 +377,9 @@ function filterEditSave() {
var regexp = document.getElementById("iedit_regexp").value;
var descr = document.getElementById("iedit_descr").value;
var match = document.getElementById("iedit_match").value;
var match = document.getElementById("iedit_match");
var v_match = match[match.selectedIndex].text;
// notify("Saving filter " + filter + ": " + regexp + ", " + descr + ", " + match);
@@ -388,7 +392,7 @@ function filterEditSave() {
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
filter + "&r=" + param_escape(regexp) + "&d=" + param_escape(descr) +
"&m=" + param_escape(match), true);
"&m=" + param_escape(v_match), true);
xmlhttp.onreadystatechange=filterlist_callback;
xmlhttp.send(null);