diff options
Diffstat (limited to 'gnats-report-html.lsp')
-rw-r--r-- | gnats-report-html.lsp | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gnats-report-html.lsp b/gnats-report-html.lsp index b015971..a64541e 100644 --- a/gnats-report-html.lsp +++ b/gnats-report-html.lsp @@ -49,20 +49,11 @@ end <form name="cmd" action="" method="POST"> -<H2>Info about you</H2> <DL> <% local myform = form.reportform -local tags = { "reporter_name", "from" } -displayinfo(myform,tags) -%> -</DL> - -<H2>Report description</H2> -<DL> -<% -local myform = form.reportform -local tags = { "synopsis","severity","priority","category","class","release","environment", "description", "howtorepeat", "fix", } +displayinfo(myform, { "reporter_name", "from", "synopsis", "description" } ) +local tags = {"severity","priority","category","class","release", "howtorepeat", "fix", } displayinfo(myform,tags) %> </DL> |