Commit 24870261 authored by dave%intrec.com's avatar dave%intrec.com

Re-fixing bug 30824 the correct way (which also fixes bug 46753)

parent 52aae0f4
......@@ -898,12 +898,11 @@ The changes made were:
}
if ($old ne $new) {
if ($col eq 'assigned_to' || $col eq 'qa_contact') {
$old = DBID_to_name($old) if $old != 0;
$new = DBID_to_name($new) if $new != 0;
$old = ($old) ? DBID_to_name($old) : "";
$new = ($new) ? DBID_to_name($new) : "";
$origCcString .= ",$old"; # make sure to send mail to people
# if they are going to no longer get
# updates about this bug.
$old = "" if $old == 0;
}
if ($col eq 'product') {
RemoveVotes($id, 0,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment