Commit c42c5a57 authored by Reed Loden's avatar Reed Loden

Bug 559398 - "Old incomplete data warning showing on activity view due to custom…

Bug 559398 - "Old incomplete data warning showing on activity view due to custom field value of '?'" [r=LpSolit a=LpSolit]
parent 4d63354a
......@@ -3221,7 +3221,10 @@ sub GetBugActivity {
if ($activity_visible) {
# Check for the results of an old Bugzilla data corruption bug
$incomplete_data = 1 if ($added =~ /^\?/ || $removed =~ /^\?/);
if (($added eq '?' && $removed eq '?')
|| ($added =~ /^\? / || $removed =~ /^\? /)) {
$incomplete_data = 1;
}
# An operation, done by 'who' at time 'when', has a number of
# 'changes' associated with it.
......
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