DataObjects/Core_person_signup.php
[Pman.Core] / Pman.Login.js
index 67534df..982f157 100644 (file)
@@ -36,6 +36,8 @@ Pman.Login =  new Roo.util.Observable({
     versionWarn: false,
     sending : false,
     
+    checkConnection : false, // the Roo.data.Connection for checking if still authenticated.
+    
     onLoad : function() // called on page load...
     {
         // load 
@@ -105,8 +107,10 @@ Pman.Login =  new Roo.util.Observable({
             return;
         }
         this.sending = true;
-        
-        Roo.Ajax.request({  
+        if (!this.checkConnection) {
+            this.checkConnection = new Roo.data.Connection();
+        }
+        this.checkConnection.request({
             url: baseURL + '/Login.js',  
             params: {
                 getAuthUser: true
@@ -406,7 +410,7 @@ Pman.Login =  new Roo.util.Observable({
          // logoprefix comes from base config.
          
         var img = typeof(appLogo) != 'undefined'  && appLogo.length ? appLogo :
-            rootURL + '/Pman/'+appNameShort + '/templates/images/logo.gif' 
+            rootURL + '/Pman/'+appNameShort + '/templates/images/logo.gif' ;
          
         Pman.Login.form.el.createChild({
                 tag: 'img',