From fadfe7d9b477c4068b12aab1f70b35028df51290 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 31 Dec 2005 09:03:45 +0100 Subject: fix uninitialized xmlhttprequest object in feedlist.js --- feedlist.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'feedlist.js') 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) { -- cgit v1.2.3