From 3ce672756c4f0954b3429ec05c43849c5b43cc4d Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 19 Aug 2006 20:45:27 +0000 Subject: [PATCH] Fix Utilities.HTTP.doHead() brokenness --- chrome/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 index e99f03869..00bc4542c 100644 --- 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);