diff options
author | cyeh%bluemartini.com <> | 2001-03-10 08:41:37 +0100 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2001-03-10 08:41:37 +0100 |
commit | a0b4765775200003bb118b719402f7290f9f2588 (patch) | |
tree | 7c8937caf9bf5076fe9a90fe1e7291281a731c05 /process_bug.cgi | |
parent | 02b31fdc7e4bbddd7b6ab768f70736b4bc1281ee (diff) | |
download | bugzilla-a0b4765775200003bb118b719402f7290f9f2588.tar.gz bugzilla-a0b4765775200003bb118b719402f7290f9f2588.tar.xz |
fix for 70039: Mid-air collision page confusing, users think comments will be lost
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 061dadc93..e209dd5eb 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -727,11 +727,9 @@ 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 " This will cause all of the above changes to be overwritten"; - if ($longchanged) { - print ", except for the changes to the description"; - } + 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 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; |