diff options
author | mkanat%bugzilla.org <> | 2009-11-24 07:09:41 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-11-24 07:09:41 +0100 |
commit | 5fc80f94271780b6ff6d1dbba554df35e803ac51 (patch) | |
tree | ebc3f2bc12bb32ab280cacb1cd88b35001fb2c0e /sanitycheck.cgi | |
parent | 78413d851910175fcc8aef2249be377cab7dd7e8 (diff) | |
download | bugzilla-5fc80f94271780b6ff6d1dbba554df35e803ac51.tar.gz bugzilla-5fc80f94271780b6ff6d1dbba554df35e803ac51.tar.xz |
Bug 430014: Re-write the code hooks system so that it uses modules instead of individual .pl files
Patch by Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-x | sanitycheck.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi index f5ba1024f..614273769 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -388,7 +388,7 @@ if ($cgi->param('remove_old_whine_targets')) { # Repair hook ########################################################################### -Bugzilla::Hook::process("sanitycheck-repair", { status => \&Status }); +Bugzilla::Hook::process('sanitycheck_repair', { status => \&Status }); ########################################################################### # Checks @@ -1075,7 +1075,7 @@ Status('whines_obsolete_target_fix') if $display_repair_whines_link; # Check hook ########################################################################### -Bugzilla::Hook::process("sanitycheck-check", { status => \&Status }); +Bugzilla::Hook::process('sanitycheck_check', { status => \&Status }); ########################################################################### # End |