diff options
author | Simon Green <sgreen@redhat.com> | 2014-07-03 16:04:28 +1000 |
---|---|---|
committer | Simon Green <sgreen@redhat.com> | 2014-07-03 16:04:28 +1000 |
commit | a26d34af37d00485846cdf3978b726824f6138d4 (patch) | |
tree | 971c3c5de5704fc9d6032fcd6fae0051f4e77fce /template | |
parent | 5c775b2e0bb818686a3d140c8fdf851982e5a40f (diff) | |
download | bugs-a26d34af37d00485846cdf3978b726824f6138d4.tar bugs-a26d34af37d00485846cdf3978b726824f6138d4.tar.gz bugs-a26d34af37d00485846cdf3978b726824f6138d4.tar.bz2 bugs-a26d34af37d00485846cdf3978b726824f6138d4.tar.xz bugs-a26d34af37d00485846cdf3978b726824f6138d4.zip |
Bug 1031274 - Cannot update multiple bugs at once if you don't change a integer custom field
r=glob, a=glob
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/field.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/field.html.tmpl b/template/en/default/bug/field.html.tmpl index 23b94d594..59dd140db 100644 --- a/template/en/default/bug/field.html.tmpl +++ b/template/en/default/bug/field.html.tmpl @@ -41,7 +41,7 @@ name="[% field.name FILTER html %]" value="[% value FILTER html %]" size="40" maxlength="[% constants.MAX_FREETEXT_LENGTH FILTER none %]" - [% IF field.type == constants.FIELD_TYPE_INTEGER %] pattern="\d+[% IF dontchange %]|[% dontchange FILTER html %][% END %]"' [% END %] + [% IF field.type == constants.FIELD_TYPE_INTEGER %] pattern="\d+[% IF dontchange %]|[% dontchange FILTER html %][% END %]" [% END %] [% ' aria-required="true" required' IF field.is_mandatory %]> [% CASE [constants.FIELD_TYPE_DATETIME, constants.FIELD_TYPE_DATE] %] [% size = (field.type == constants.FIELD_TYPE_DATE) ? 10 : 20 %] |