Commit 706d83ff authored by Gervase Markham's avatar Gervase Markham Committed by Gervase Markham

Bug 670906 - Make it so delta_ts is only updated when there are changes. Fix…

Bug 670906 - Make it so delta_ts is only updated when there are changes. Fix regression from bug 620827. r=timello, a=lpsolit.
parent 2ceff045
......@@ -961,7 +961,7 @@ sub update {
$_->insert_create_data($_) foreach @$added_see;
# If any changes were found, record it in the activity log
if (scalar $removed_see || scalar $added_see) {
if (scalar @$removed_see || scalar @$added_see) {
$changes->{see_also} = [join(', ', map { $_->name } @$removed_see),
join(', ', map { $_->name } @$added_see)];
}
......
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