Sat, 30 May 2020 18:12:38 +0200
significantly increases length of subject field
setup/postgres/psql_create_tables.sql | file | annotate | diff | comparison | revisions | |
src/main/webapp/WEB-INF/jsp/issue-form.jsp | file | annotate | diff | comparison | revisions |
--- a/setup/postgres/psql_create_tables.sql Sat May 30 18:07:41 2020 +0200 +++ b/setup/postgres/psql_create_tables.sql Sat May 30 18:12:38 2020 +0200 @@ -63,7 +63,7 @@ project integer not null references lpit_project(projectid), status issue_status not null default 'InSpecification', category issue_category not null default 'Feature', - subject varchar(20) not null, + subject varchar(200) not null, description text, assignee integer references lpit_user(userid), created timestamp with time zone not null default now(),
--- a/src/main/webapp/WEB-INF/jsp/issue-form.jsp Sat May 30 18:07:41 2020 +0200 +++ b/src/main/webapp/WEB-INF/jsp/issue-form.jsp Sat May 30 18:12:38 2020 +0200 @@ -90,7 +90,7 @@ </tr> <tr> <th><fmt:message key="issue.subject"/></th> - <td><input name="subject" type="text" maxlength="20" required value="<c:out value="${issue.subject}"/>" /></td> + <td><input name="subject" type="text" maxlength="200" required value="<c:out value="${issue.subject}"/>" /></td> </tr> <tr> <th class="vtop"><fmt:message key="issue.description"/></th>