Bug #287793 --> fix a typo

patch by robert sayre
This commit is contained in:
scott%scott-macgregor.org 2005-04-22 21:44:52 +00:00
parent 34c5bb34d3
commit 25677ada84

View File

@ -156,7 +156,7 @@ Feed.prototype =
this.request = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"]
.createInstance(Components.interfaces.nsIXMLHttpRequest);
this.request.onprogress = Feed.onProgress; // must be set before calling .open
this.request.onprogress = this.onProgress; // must be set before calling .open
this.request.open("GET", this.url, true);
var lastModified = this.lastModified;