diff options
author | travis%sedsystems.ca <> | 2005-01-08 05:25:19 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-01-08 05:25:19 +0100 |
commit | d6e7117d0ff4a6674a186f443219f56c0bb5bab8 (patch) | |
tree | 979b54567debb0f23988067c151700120f9da20e /template | |
parent | ed09207ecef601b38bff1392ef5e1726e8fc44c5 (diff) | |
download | bugzilla-d6e7117d0ff4a6674a186f443219f56c0bb5bab8.tar.gz bugzilla-d6e7117d0ff4a6674a186f443219f56c0bb5bab8.tar.xz |
Bug 276446: Initial description cannot be made private on new bug creation
Patch: travis r=joini a=justdave
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/bug/create/create.html.tmpl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 54ff22fbd..0bc5c516c 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -18,6 +18,7 @@ # # Contributor(s): Gervase Markham <gerv@gerv.net> # Ville Skyttä <ville.skytta@iki.fi> + # Shane H. W. Travis <travis@sedsystems.ca> #%] [% PROCESS global/variables.none.tmpl %] @@ -247,6 +248,22 @@ function set_assign_to() { </td> </tr> + [% IF Param("insidergroup") && UserInGroup(Param("insidergroup")) %] + <tr> + <td></td> + <td colspan="3"> + + <input type="checkbox" id="commentprivacy" name="commentprivacy" + [% " checked=\"checked\"" IF commentprivacy %]> + <label for="commentprivacy"> + Initial Description is Private + </label> + </td> + </tr> + [% ELSE %] + <input type="hidden" name="commentprivacy" value="0"> + [% END %] + [% IF UserInGroup('editbugs') %] [% IF use_keywords %] <tr> |