From: mkanat%bugzilla.org <> Date: Wed, 20 Aug 2008 02:49:03 +0000 (+0000) Subject: Fix the alphabetical ordering of the POD in Bugzilla::Hook. X-Git-Tag: bugzilla-3.2rc2~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=826e5d3893325e92e90021c148311277d0283c3c;p=thirdparty%2Fbugzilla.git Fix the alphabetical ordering of the POD in Bugzilla::Hook. --- diff --git a/Bugzilla/Hook.pm b/Bugzilla/Hook.pm index 3be0d166f8..fb63d3b224 100644 --- a/Bugzilla/Hook.pm +++ b/Bugzilla/Hook.pm @@ -198,6 +198,22 @@ The definition is structured as: =back +=head2 colchange-columns + +This happens in F right after the list of possible display +columns have been defined and gives you the opportunity to add additional +display columns to the list of selectable columns. + +Params: + +=over + +=item C - An arrayref containing an array of column IDs. Any IDs +added by this hook must have been defined in the the buglist-columns hook. +See L. + +=back + =head2 enter_bug-entrydefaultvars This happens right before the template is loaded on enter_bug.cgi. @@ -311,19 +327,3 @@ A hash that maps the names of errors (like C) to numbers. See L for an example. =back - -=head2 colchange-columns - -This happens in F right after the list of possible display -columns have been defined and gives you the opportunity to add additional -display columns to the list of selectable columns. - -Params: - -=over - -=item C - An arrayref containing an array of column IDs. Any IDs -added by this hook must have been defined in the the buglist-columns hook. -See L. - -=back