diff options
author | cyeh%bluemartini.com <> | 2001-03-10 08:59:40 +0100 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2001-03-10 08:59:40 +0100 |
commit | 70e7519ed53abf4636a4abe51e4b81140e26127f (patch) | |
tree | 1ae65d33f7940331548af77fb43d496921bf9410 /process_bug.cgi | |
parent | a0b4765775200003bb118b719402f7290f9f2588 (diff) | |
download | bugzilla-70e7519ed53abf4636a4abe51e4b81140e26127f.tar.gz bugzilla-70e7519ed53abf4636a4abe51e4b81140e26127f.tar.xz |
back out change
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index e209dd5eb..061dadc93 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -727,9 +727,11 @@ The changes made were: my $value = value_quote($::FORM{$i}); print qq{<input type=hidden name="$i" value="$value">\n}; } - my $conflictid = DBID_to_name($id); print qq{<input type=submit value="Submit my changes anyway">\n}; - print "<BR>Clicking this button will preserve " . DBID_to_name($id) . "'s additional comments, but will overwite any other changes made by " . DBID_to_name($id); + print " This will cause all of the above changes to be overwritten"; + if ($longchanged) { + print ", except for the changes to the description"; + } print qq{.</form>\n<li><a href="show_bug.cgi?id=$id">Throw away my changes, and go revisit bug $id</a></ul>\n}; PutFooter(); exit; |