fix variables on update
[Pman.Core] / Pman.Login.js
index a8233b2..2b0c12a 100644 (file)
@@ -132,7 +132,9 @@ Pman.Login =  new Roo.util.Observable({
         var res = Pman.processResponse(response);
         //console.log(res);
         if ( Pman.Login.checkFails > 2) {
-            Pman.Preview.disable();
+            if (typeof(Pman.Preview) != 'undefined') {
+                Pman.Preview.disable(); // not sure why this was added - but MO chrome does not have it.
+            }
             Roo.MessageBox.alert("Error", res.errorMsg ? res.errorMsg : 
                 "Error getting authentication status. - try reloading"); 
             return;
@@ -259,16 +261,15 @@ Pman.Login =  new Roo.util.Observable({
                 Roo.MessageBox.alert("Error", "Fill in your email address");
                 return;
             }
-            Roo.Ajax.request({
+            new Pman.Request({
                 url: baseURL + '/Login.js',
                 mask : "Sending Password Reset email",
                 params: {
                     passwordRequest: n
                 },
                 method: 'POST',  
-                success:  function(response, opts)  {  // check successfull...
+                success:  function(res)  {  // check successfull...
                 
-                    var res = Pman.processResponse(response);
                     if (!res.success) { // error!
                        Roo.MessageBox.alert("Error" , res.errorMsg ? res.errorMsg  : "Problem Requesting Password Reset");
                        return;