From af06153cffce1f6c861251730c571db486ce5b20 Mon Sep 17 00:00:00 2001 From: lutranf Date: Wed, 25 Mar 2015 13:48:12 +0100 Subject: [PATCH] hack DNS issue --- jquery/common.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jquery/common.js b/jquery/common.js index d6bd1ae..c3a6533 100644 --- a/jquery/common.js +++ b/jquery/common.js @@ -475,7 +475,8 @@ function debug(text, bQuery) function getLoginToken(sPass) { if(!window.location.origin) window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: ''); - return md5(sPass+window.location.origin+window.location.pathname); + //return md5(sPass+window.location.origin+window.location.pathname); + return md5(sPass+'http://databap.lutran.fr/'); } function md5(str)