From 5fc80f94271780b6ff6d1dbba554df35e803ac51 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Tue, 24 Nov 2009 06:09:41 +0000 Subject: Bug 430014: Re-write the code hooks system so that it uses modules instead of individual .pl files Patch by Max Kanat-Alexander (module owner) a=mkanat --- sanitycheck.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sanitycheck.cgi') 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 -- cgit v1.2.3-24-g4f1b