diff --git a/chrome/content/zotero/proxy.js b/chrome/content/zotero/proxy.js
index f4606855f0..fe6cc8a7b7 100644
--- a/chrome/content/zotero/proxy.js
+++ b/chrome/content/zotero/proxy.js
@@ -54,7 +54,7 @@ var Zotero_Proxy_Dialog = new function() {
* Called when "Add" button is pressed
*/
this.accept = function() {
- window.arguments[0].disable = document.getElementById("disable").checked;
+ window.arguments[0].disable = false;//document.getElementById("disable").checked;
window.arguments[0].add = true;
}
@@ -62,7 +62,7 @@ var Zotero_Proxy_Dialog = new function() {
* Called when "Ignore" button is pressed
*/
this.cancel = function() {
- window.arguments[0].disable = document.getElementById("disable").checked;
+ window.arguments[0].disable = false;//document.getElementById("disable").checked;
window.arguments[0].add = false;
}
diff --git a/chrome/content/zotero/proxy.xul b/chrome/content/zotero/proxy.xul
index d27d845355..ec9f86875b 100644
--- a/chrome/content/zotero/proxy.xul
+++ b/chrome/content/zotero/proxy.xul
@@ -21,6 +21,5 @@
-
\ No newline at end of file