www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 3ce672756c4f0954b3429ec05c43849c5b43cc4d
parent 26668a6e73267ddad24c2372465d4bfe89defc0a
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sat, 19 Aug 2006 20:45:27 +0000

Fix Utilities.HTTP.doHead() brokenness


Diffstat:
Mchrome/chromeFiles/content/scholar/xpcom/utilities.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/chromeFiles/content/scholar/xpcom/utilities.js b/chrome/chromeFiles/content/scholar/xpcom/utilities.js @@ -407,7 +407,7 @@ Scholar.Utilities.HTTP = new function() { var test = xmlhttp.open('HEAD', url, true); xmlhttp.onreadystatechange = function(){ - _stateChange(xmlhttp, callback1, callback2); + _stateChange(xmlhttp, onDone); }; xmlhttp.send(null);