Skip to content

Commit

Permalink
Bug 1145502: cf_crash_signature missing in fresh BMO install
Browse files Browse the repository at this point in the history
  • Loading branch information
globau authored and dklawren committed Mar 20, 2015
1 parent 8f3716a commit f28c04f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions extensions/BMO/Extension.pm
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,18 @@ sub install_update_db {
buglist => 1,
});
}
unless (Bugzilla::Field->new({ name => 'cf_crash_signature' })) {
Bugzilla::Field->create({
name => 'cf_crash_signature',
description => 'Crash Signature',
type => FIELD_TYPE_TEXTAREA,
mailhead => 0,
enter_bug => 1,
obsolete => 0,
custom => 1,
buglist => 0,
});
}
}

sub _last_closed_date {
Expand Down

0 comments on commit f28c04f

Please sign in to comment.