]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix the alphabetical ordering of the POD in Bugzilla::Hook.
authormkanat%bugzilla.org <>
Wed, 20 Aug 2008 02:49:03 +0000 (02:49 +0000)
committermkanat%bugzilla.org <>
Wed, 20 Aug 2008 02:49:03 +0000 (02:49 +0000)
Bugzilla/Hook.pm

index 3be0d166f83393f36798c229fc6ecbac89a868c9..fb63d3b224272b3880ff217f7486f7f277039065 100644 (file)
@@ -198,6 +198,22 @@ The definition is structured as:
 
 =back
 
+=head2 colchange-columns
+
+This happens in F<colchange.cgi> 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<columns> - 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</buglist-columns>.
+
+=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<invalid_param>) to numbers.
 See L<Bugzilla::WebService::Constants/WS_ERROR_CODE> for an example.
 
 =back
-
-=head2 colchange-columns
-
-This happens in F<colchange.cgi> 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<columns> - 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</buglist-columns>.
-
-=back