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 /editparams.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 'editparams.cgi')
-rwxr-xr-x | editparams.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editparams.cgi b/editparams.cgi index 2c3e4089e..9b4f04e3c 100755 --- a/editparams.cgi +++ b/editparams.cgi @@ -74,7 +74,7 @@ foreach my $panel (keys %$param_panels) { my %hook_panels = map { $_->{name} => { params => $_->{param_list} } } @panels; # Note that this hook is also called in Bugzilla::Config. -Bugzilla::Hook::process('config-modify_panels', { panels => \%hook_panels }); +Bugzilla::Hook::process('config_modify_panels', { panels => \%hook_panels }); $vars->{panels} = \@panels; |