김대욱

app.js_1

Showing 1 changed file with 1 additions and 1 deletions
......@@ -185,7 +185,7 @@ function updateUser(id, name) {
var motive = 'format';
var check = false;
if(!name.match(alphanumeric)) motive = 'format';
//if(!name.match(alphanumeric)) motive = 'format';
if(name.length < 3 || name.length > 16) motive = 'length';
if(utils.checkUser(clients, name) || name == 'Console' || name == 'System') motive = 'taken';
if(clients[id].un != null) check = true;
......