From 1332c0c9bf9ef247f80a7b5eac932a5f7444431f Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Wed, 15 Feb 2017 18:02:06 +0100 Subject: [PATCH] refined client-side email address check --- web/room.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/room.js b/web/room.js index 38a3d2a..26d78e9 100644 --- a/web/room.js +++ b/web/room.js @@ -639,7 +639,7 @@ function mesgtoadm_formtext_hilite(form) function j_check_email(email, ret) { - if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,10})+$/.test(email)) + if (/^\w+([\.-]*\w+)*@\w+([\.-]*\w+)*(\.\w{2,10})+$/.test(email)) return (true); ret.ret += (g_lang == 'en' ? "Invalid email address. " : "Indirizzo e-mail non valido."); -- 2.17.1