diff options
author | dkl%redhat.com <> | 2008-12-18 16:42:45 +0100 |
---|---|---|
committer | dkl%redhat.com <> | 2008-12-18 16:42:45 +0100 |
commit | ab268a175cdc22752e204ee71883f6455c551c26 (patch) | |
tree | 76db3e1e77532137a57683d352a35cec673e8484 | |
parent | 1cb96f9b44b42855844576afab248fa9bdfc1c00 (diff) | |
download | bugzilla-ab268a175cdc22752e204ee71883f6455c551c26.tar.gz bugzilla-ab268a175cdc22752e204ee71883f6455c551c26.tar.xz |
Bug 31117 - should have a "submit only my comments" option on midair collision
Patch by Dave Lawrence <dkl@redhat.com> - r/a=LpSolit
-rw-r--r-- | template/en/default/bug/process/midair.html.tmpl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/template/en/default/bug/process/midair.html.tmpl b/template/en/default/bug/process/midair.html.tmpl index d7e980e8c..ed3be74d3 100644 --- a/template/en/default/bug/process/midair.html.tmpl +++ b/template/en/default/bug/process/midair.html.tmpl @@ -88,6 +88,17 @@ You have the following choices: [% ", except for the added comment(s)" IF comments.size > start_at %]. </form> </li> + [% IF cgi.param("comment") %] + <li> + <form method="post" action="process_bug.cgi"> + <input type="hidden" name="id" value="[% cgi.param("id") FILTER html %]"> + <input type="hidden" name="delta_ts" value="[% bug.delta_ts FILTER html %]"> + <input type="hidden" name="comment" value="[% cgi.param("comment") FILTER html %]"> + <input type="hidden" name="commentprivacy" value="[% cgi.param("commentprivacy") FILTER html %]"> + <input type="submit" id="process_comment" value="Submit only my new comment"> + </form> + </li> + [% END %] <li> Throw away my changes, and [%+ "revisit $terms.bug $bug.id" FILTER bug_link(bug.id) FILTER none %] |