diff options
author | 2009-11-24 06:09:41 +0000 | |
---|---|---|
committer | 2009-11-24 06:09:41 +0000 | |
commit | 5fc80f94271780b6ff6d1dbba554df35e803ac51 (patch) | |
tree | ebc3f2bc12bb32ab280cacb1cd88b35001fb2c0e /checksetup.pl | |
parent | Bug 430012: Make checksetup.pl precompile extension templates (diff) | |
download | bugzilla-5fc80f94271780b6ff6d1dbba554df35e803ac51.tar.gz bugzilla-5fc80f94271780b6ff6d1dbba554df35e803ac51.tar.bz2 bugzilla-5fc80f94271780b6ff6d1dbba554df35e803ac51.zip |
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 'checksetup.pl')
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index d3e3f7952..8993ff08d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -222,7 +222,7 @@ Bugzilla::Install::reset_password($switch{'reset-password'}) Bugzilla::Install::create_default_product(); -Bugzilla::Hook::process('install-before_final_checks', {'silent' => $silent }); +Bugzilla::Hook::process('install_before_final_checks', { silent => $silent }); ########################################################################### # Final checks |