DataObjects/pman.links.ini
[Pman.Core] / Pman.Lock.js
index d210569..c773c11 100644 (file)
@@ -41,6 +41,8 @@ Pman.Lock = function (cfg) {
 Roo.apply(Pman.Lock.prototype, {
     cfg : false,
     
+    id : false, // the id of the lock..
+    
     callLock : function(force)
     {
         force = force || 0;
@@ -61,8 +63,9 @@ Roo.apply(Pman.Lock.prototype, {
                // Roo.log(data);
                 if (!force && typeof(data) == 'object') {
                     _t.confirmBreak(data);
+                    return;
                 }
-                _t.lock_id = data;
+                _t.id = data;
                 _t.cfg.success(_t); //dont care about scope..
                 
                 
@@ -96,7 +99,7 @@ Roo.apply(Pman.Lock.prototype, {
         Pman.Request({
             url : baseURL + '/Core/Lock/unlock',
             params : {
-                id : this.lock_id
+                id : this.id
             },
             failure : function() {
                 Roo.MessageBox.alert("Error", "UnLock Request failed, you may get a warning when trying to edit again");