diff options
author | lpsolit%gmail.com <> | 2006-12-27 03:01:07 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-12-27 03:01:07 +0100 |
commit | 873c5b69e8fc21ae84898fdccd8bb91a35184fb2 (patch) | |
tree | 1ec1299a9303607631cd7403b08cec12c127079d /template | |
parent | 87262c454c6d67b55cbb59598ddc05e82da98940 (diff) | |
download | bugzilla-873c5b69e8fc21ae84898fdccd8bb91a35184fb2.tar.gz bugzilla-873c5b69e8fc21ae84898fdccd8bb91a35184fb2.tar.xz |
Bug 364879: The custom field creation page generates invalid HTML code - Patch by victory(_RSZ_) <bmo2007@rsz.jp> r=vladd a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/custom_fields/create.html.tmpl | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/template/en/default/admin/custom_fields/create.html.tmpl b/template/en/default/admin/custom_fields/create.html.tmpl index f4a89e56e..3fdb20f43 100644 --- a/template/en/default/admin/custom_fields/create.html.tmpl +++ b/template/en/default/admin/custom_fields/create.html.tmpl @@ -41,17 +41,16 @@ is "too complex". Please think carefully before adding any custom fields. It may be the case that [% terms.Bugzilla %] already does what you need, and you just haven't enabled the correct feature yet. - - <ul> - <li>Custom field names must begin with "cf_" to distinguish them from - standard fields. If you omit "cf_" from the beginning of the name, it - will be added for you.</li> - <li>Descriptions are a very short string describing the field and will be - used as the label for this field in the user interface.</li> - </ul> - <br> </p> +<ul> + <li>Custom field names must begin with "cf_" to distinguish them from + standard fields. If you omit "cf_" from the beginning of the name, it + will be added for you.</li> + <li>Descriptions are a very short string describing the field and will be + used as the label for this field in the user interface.</li> +</ul> + <form id="add_field" action="editfields.cgi" method="GET"> <table border="0" cellspacing="0" cellpadding="5"> <tr> @@ -101,10 +100,11 @@ <td> </td> </tr> </table> - <br> - <input type="hidden" name="action" value="new"> - <input type="hidden" name="token" value="[% token FILTER html %]"> - <input type="submit" id="create" value="Create"> + <p> + <input type="hidden" name="action" value="new"> + <input type="hidden" name="token" value="[% token FILTER html %]"> + <input type="submit" id="create" value="Create"> + </p> </form> <p> |