diff options
author | Kent Rogers <kar@cray.com> | 2011-08-15 15:13:40 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-08-15 15:13:40 +0200 |
commit | 1a34c347b8b4977293fb55f5b7be344a607a3d85 (patch) | |
tree | 0704572fc71ea20b6017f102b8a0611d770d2ba7 | |
parent | ca9aa05518cbae16e4f8932ca3c37690ad12354d (diff) | |
download | bugzilla-1a34c347b8b4977293fb55f5b7be344a607a3d85.tar.gz bugzilla-1a34c347b8b4977293fb55f5b7be344a607a3d85.tar.xz |
Bug 537759: The "Description" field for attachments should be highlighted as being mandatory
r/a=LpSolit
-rw-r--r-- | template/en/default/attachment/createformcontents.html.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/template/en/default/attachment/createformcontents.html.tmpl b/template/en/default/attachment/createformcontents.html.tmpl index f7b86f884..5b04382b6 100644 --- a/template/en/default/attachment/createformcontents.html.tmpl +++ b/template/en/default/attachment/createformcontents.html.tmpl @@ -43,10 +43,11 @@ </td> </tr> <tr> - <th><label for="description">Description</label>:</th> + <th class="required"><label for="description">Description</label>:</th> <td> <em>Describe the attachment briefly.</em><br> - <input type="text" id="description" name="description" size="60" maxlength="200"> + <input type="text" id="description" name="description" class="required" + size="60" maxlength="200"> </td> </tr> <tr[% ' class="expert_fields"' UNLESS bug.id %]> |