Skip to content

Commit

Permalink
CLOSED - task #390: Group lists names should me limited
Browse files Browse the repository at this point in the history
  • Loading branch information
vjrj committed Oct 25, 2012
1 parent e6a0224 commit e74325e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public static void restrictToUnixName(final Builder builder, final String id) {
builder.regex(TextUtils.UNIX_NAME).regexText(
I18n.t("The name must contain only lowercase characters, numbers and dashes")).textboxId(id);
builder.minLength(3).maxLength(15).allowBlank(false).minLengthText(
CoreMessages.FIELD_MUST_BE_BETWEEN_3_AND_15_NO_CHARS).maxLengthText(
CoreMessages.FIELD_MUST_BE_BETWEEN_3_AND_15_NO_CHARS);
I18n.t(CoreMessages.FIELD_MUST_BE_BETWEEN_3_AND_15_NO_CHARS)).maxLengthText(
I18n.t(CoreMessages.FIELD_MUST_BE_BETWEEN_3_AND_15_NO_CHARS));
}

}

0 comments on commit e74325e

Please sign in to comment.