summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-31 09:03:45 +0100
committerAndrew Dolgov <[email protected]>2005-12-31 09:03:45 +0100
commitfadfe7d9b477c4068b12aab1f70b35028df51290 (patch)
tree4cad40a5a91cfb9befd26413f9ff0513995e9b6c /feedlist.js
parent12db369ca71f3ba1cfadd8890ebcb203927083f6 (diff)
fix uninitialized xmlhttprequest object in feedlist.js
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/feedlist.js b/feedlist.js
index 048a24c80..0276fd0e9 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -9,14 +9,17 @@ try {
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
+ xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
+ xmlhttp_rpc = false;
}
}
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
+ xmlhttp_rpc = new XMLHttpRequest();
}
function viewfeed(feed, skip, subop, doc) {