From 3f3bfc46e456b3e292cc9ad0fc574021796aaee5 Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Sat, 4 Oct 2008 22:32:32 +0000 Subject: [PATCH] =?utf8?q?FIX=20traitement=20du=20cas=20ou=20plusieurs=20v?= =?utf8?q?aleurs=20pr=C3=A9c=C3=A8de=20la=20valeur=20"cookie=3D.."=20dans?= =?utf8?q?=20le=20cookie..=20normalement=20ne=20devrait=20jamais=20arriver?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- js/client.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/client.js b/js/client.js index 49f7749..c378075 100644 --- a/js/client.js +++ b/js/client.js @@ -26,7 +26,7 @@ euphorik.Client = function(util, communication) { this.communication = communication; this.cookie = null; - this.regexCookie = /^cookie=([^;]*)/; + this.regexCookie = /cookie=([^;]*)/; // données personnels this.resetDonneesPersonnelles(); @@ -295,7 +295,7 @@ euphorik.Client.prototype.getJSONEnregistrement = function(login, password) { }; /** - * Connexion. Réalisée de manière synchrone. + * Connexion. Réalisé de manière synchrone. */ euphorik.Client.prototype.connexion = function(action, messageJson) { var thisClient = this; @@ -369,7 +369,7 @@ euphorik.Client.prototype.flush = function(async) { if (!this.authentifie()) { return false; } - + var thisClient = this; var ok = true; -- 2.43.0