commit 7152c71e842de00fc06f14b4e6c63781cf6fccc9
parent dd05b26dccc70374f06f9365196f704e45a22eef
Author: Simon Kornblith <simon@simonster.com>
Date: Mon, 20 Jun 2011 17:23:31 +0000
Fix Firefox 3.6 compatibility
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/ipc.js b/chrome/content/zotero/xpcom/ipc.js
@@ -485,7 +485,7 @@ Zotero.IPC.Pipe.Poll.prototype = {
// clear file
var foStream = Components.classes["@mozilla.org/network/file-output-stream;1"].
createInstance(Components.interfaces.nsIFileOutputStream);
- foStream.init(_fifoFile, 0x02 | 0x08 | 0x20, 0666, 0);
+ foStream.init(this._file, 0x02 | 0x08 | 0x20, 0666, 0);
foStream.close();
}
};
\ No newline at end of file