FIX problème de mise à jour du profile
[euphorik.git] / js / euphorik.js
index 7e611db..8518495 100755 (executable)
@@ -602,7 +602,8 @@ Client.prototype.resetDonneesPersonnelles = function()
    // les conversations, une conversation est un objet possédant les attributs suivants :
    // - root (entier)
    // - page (entier)
    // les conversations, une conversation est un objet possédant les attributs suivants :
    // - root (entier)
    // - page (entier)
-   this.conversations = new Array()
+   // - reduit (bool)
+   this.conversations = []
 }
 
 Client.prototype.setCss = function(css)
 }
 
 Client.prototype.setCss = function(css)
@@ -665,7 +666,7 @@ Client.prototype.ajouterConversation = function(racine)
       if (this.conversations[i].root == racine)
          return false
    
       if (this.conversations[i].root == racine)
          return false
    
-   this.conversations.push({root : racine, page : 1})
+   this.conversations.push({root : racine, page : 1, reduit : false})
    if (this.autoflush) this.flush(true)
    
    return true
    if (this.autoflush) this.flush(true)
    
    return true