Revert "made registry read-only"

This reverts commit d286c22abc3f8f0bb9120c69e1bb3f0cda78b0fc.
diff --git a/updates.js b/updates.js
index 3c76f3b..ab79481 100644
--- a/updates.js
+++ b/updates.js
@@ -1,11 +1,8 @@
 var updates = exports
 
 updates.package = function (doc, req) {
-return error('The plugin reigstry has switcehd to read-only!, please publish your plugins to npm. Learn more at http://plugins.cordova.io/npm/authors.html.');
-/*
   require("monkeypatch").patch(Object, Date, Array, String)
 
-
 var tempbody = JSON.parse(req.body);
 //only allow npm client 1.3.4 to publish
 if(tempbody['_npmVersion']) {
@@ -23,11 +20,9 @@
 }
   var semver = require("semver")
   var valid = require("valid")
-  */
   function error (reason) {
     return [{_id: "error: forbidden", forbidden:reason}, JSON.stringify({forbidden:reason})]
   }
-/*
 
   function ok (doc, message) {
     delete doc.mtime
@@ -148,5 +143,5 @@
     if (!doc['dist-tags']) doc['dist-tags'] = {}
     if (latest) doc["dist-tags"].latest = latest
     return ok(doc, "created new entry")
-  }*/
+  }
 }