From 7bc4f2517f6bf771ed937f37df73689867dbac98 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 29 Sep 2006 04:23:14 +0100 Subject: [PATCH] opera compatibility fixes (2) --- backend.php | 5 ++--- functions.js | 2 ++ tt-rss.js | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/backend.php b/backend.php index 75891208..656d88df 100644 --- a/backend.php +++ b/backend.php @@ -2688,11 +2688,10 @@ print "
+ type=\"submit\" onclick=\"return qafAdd()\" value=\"Subscribe\">
"; - } if ($id == "search") { diff --git a/functions.js b/functions.js index 76a443d9..2f7774b9 100644 --- a/functions.js +++ b/functions.js @@ -1268,6 +1268,8 @@ function qafAdd() { xmlhttp.open("GET", "backend.php?" + query, true); xmlhttp.onreadystatechange=dlg_frefresh_callback; xmlhttp.send(null); + + return false; } function filterCR(e) diff --git a/tt-rss.js b/tt-rss.js index 87b5be1b..c85dd09f 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -478,6 +478,8 @@ function qfdDelete(feed_id) { xmlhttp.open("GET", "backend.php?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id); xmlhttp.onreadystatechange=dlg_frefresh_callback; xmlhttp.send(null); + + return false; } -- 2.39.2