diff --git a/meshuser.js b/meshuser.js index feebabaf..df37fef6 100644 --- a/meshuser.js +++ b/meshuser.js @@ -2637,7 +2637,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use else if ((parent.parent.mailserver != null) && (domain.auth != 'sspi') && (domain.auth != 'ldap') && (user.emailVerified !== true) && (user.siteadmin != SITERIGHT_ADMIN)) { err = 'Email verification required'; } // User must verify it's email first. // Create mesh - else if (common.validateString(command.meshname, 1, 64) == false) { err = 'Invalid group name'; } // Meshname is between 1 and 64 characters + else if (common.validateString(command.meshname, 1, 128) == false) { err = 'Invalid group name'; } // Meshname is between 1 and 64 characters else if ((command.desc != null) && (common.validateString(command.desc, 0, 1024) == false)) { err = 'Invalid group description'; } // Mesh description is between 0 and 1024 characters else if ((command.meshtype != 1) && (command.meshtype != 2)) { err = 'Invalid group type'; } } catch (ex) { err = 'Validation exception: ' + ex; } @@ -2811,7 +2811,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use if ((parent.GetMeshRights(user, mesh) & MESHRIGHT_EDITMESH) == 0) return; if ((command.meshid.split('/').length != 3) || (command.meshid.split('/')[1] != domain.id)) return; // Invalid domain, operation only valid for current domain - if ((common.validateString(command.meshname, 1, 64) == true) && (command.meshname != mesh.name)) { change = 'Group name changed from "' + mesh.name + '" to "' + command.meshname + '"'; mesh.name = command.meshname; } + if ((common.validateString(command.meshname, 1, 128) == true) && (command.meshname != mesh.name)) { change = 'Group name changed from "' + mesh.name + '" to "' + command.meshname + '"'; mesh.name = command.meshname; } if ((common.validateString(command.desc, 0, 1024) == true) && (command.desc != mesh.desc)) { if (change != '') change += ' and description changed'; else change += 'Group "' + mesh.name + '" description changed'; mesh.desc = command.desc; } if ((common.validateInt(command.flags) == true) && (command.flags != mesh.flags)) { if (change != '') change += ' and flags changed'; else change += 'Group "' + mesh.name + '" flags changed'; mesh.flags = command.flags; } if ((common.validateInt(command.consent) == true) && (command.consent != mesh.consent)) { if (change != '') change += ' and consent changed'; else change += 'Group "' + mesh.name + '" consent changed'; mesh.consent = command.consent; } diff --git a/views/default.handlebars b/views/default.handlebars index 45ab08ed..cc98a6fa 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -9080,7 +9080,7 @@ // We are allowed, let's prompt to information var x = "Create a new device group using the options below." + '

'; - x += addHtmlValue("Name", ''); + x += addHtmlValue("Name", ''); x += addHtmlValue("Type", '
'); x += addHtmlValue("Description", '
'); setDialogMode(2, "New Device Group", 3, account_createMeshEx, x); @@ -9531,7 +9531,7 @@ function p20editmesh(focus) { if (xxdialogMode) return; - var x = addHtmlValue("Name", ''); + var x = addHtmlValue("Name", ''); x += addHtmlValue("Description", '
'); setDialogMode(2, "Edit Device Group", 3, p20editmeshEx, x); Q('dp20meshname').value = currentMesh.name;