김대욱

app.js_1

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