diff options
author | reed%reedloden.com <> | 2007-02-11 06:23:59 +0100 |
---|---|---|
committer | reed%reedloden.com <> | 2007-02-11 06:23:59 +0100 |
commit | 8d3addb3bf7dd8ee3abf634374cfa9815d791e4e (patch) | |
tree | 0c5f3b5935e3ec54184dd1a567d80819b395c22e /template/en/default/bug/create | |
parent | 6746f1d0ed53d24a60db6f981c030c6a5dd505b3 (diff) | |
download | bugzilla-8d3addb3bf7dd8ee3abf634374cfa9815d791e4e.tar.gz bugzilla-8d3addb3bf7dd8ee3abf634374cfa9815d791e4e.tar.xz |
Bug 369960 - "Ensure 'steps to reproduce' does not appear when there aren't any (field is blanked out)" [p=justdave/reed r=bkor a=justdave]
Diffstat (limited to 'template/en/default/bug/create')
-rw-r--r-- | template/en/default/bug/create/comment-guided.txt.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/bug/create/comment-guided.txt.tmpl b/template/en/default/bug/create/comment-guided.txt.tmpl index 2d2182681..23dec73cb 100644 --- a/template/en/default/bug/create/comment-guided.txt.tmpl +++ b/template/en/default/bug/create/comment-guided.txt.tmpl @@ -37,7 +37,7 @@ Build Identifier: [%+ cgi.param("buildid") %] Reproducible: [%+ cgi.param("reproducible") %] [% END %] -[% IF !(cgi.param("reproduce_steps").match('^1\.\s+2\.\s+3\.\s+$') || cgi.param("reproduce_steps").match('^\s+$')) %] +[% IF !(cgi.param("reproduce_steps").match('^1\.\s+2\.\s+3\.\s+$') || cgi.param("reproduce_steps").match('^\s*$')) %] Steps to Reproduce: [%+ cgi.param("reproduce_steps") %] [% END %] |