mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 00:55:55 +00:00
opera compatibility fixes (2)
This commit is contained in:
@@ -2688,11 +2688,10 @@
|
|||||||
print "<div align='right'>
|
print "<div align='right'>
|
||||||
<input class=\"button\"
|
<input class=\"button\"
|
||||||
id=\"fadd_submit_btn\" disabled=\"true\"
|
id=\"fadd_submit_btn\" disabled=\"true\"
|
||||||
type=\"submit\" onclick=\"javascript:qafAdd()\" value=\"Subscribe\">
|
type=\"submit\" onclick=\"return qafAdd()\" value=\"Subscribe\">
|
||||||
<input class=\"button\"
|
<input class=\"button\"
|
||||||
type=\"submit\" onclick=\"javascript:closeInfoBox()\"
|
type=\"submit\" onclick=\"return closeInfoBox()\"
|
||||||
value=\"Cancel\"></div>";
|
value=\"Cancel\"></div>";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id == "search") {
|
if ($id == "search") {
|
||||||
|
|||||||
@@ -1268,6 +1268,8 @@ function qafAdd() {
|
|||||||
xmlhttp.open("GET", "backend.php?" + query, true);
|
xmlhttp.open("GET", "backend.php?" + query, true);
|
||||||
xmlhttp.onreadystatechange=dlg_frefresh_callback;
|
xmlhttp.onreadystatechange=dlg_frefresh_callback;
|
||||||
xmlhttp.send(null);
|
xmlhttp.send(null);
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function filterCR(e)
|
function filterCR(e)
|
||||||
|
|||||||
@@ -478,6 +478,8 @@ function qfdDelete(feed_id) {
|
|||||||
xmlhttp.open("GET", "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id);
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id);
|
||||||
xmlhttp.onreadystatechange=dlg_frefresh_callback;
|
xmlhttp.onreadystatechange=dlg_frefresh_callback;
|
||||||
xmlhttp.send(null);
|
xmlhttp.send(null);
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user