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 --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Search.pm') diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 4aaf7e14c..7b8ac10e2 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -170,7 +170,7 @@ sub COLUMNS { # The short_short_desc column is identical to short_desc $columns{'short_short_desc'} = $columns{'short_desc'}; - Bugzilla::Hook::process("buglist-columns", { columns => \%columns }); + Bugzilla::Hook::process('buglist_columns', { columns => \%columns }); $cache->{search_columns} = \%columns; return $cache->{search_columns}; -- cgit v1.2.3-24-g4f1b