From 1a0421dbf78e896d831c8ac5c1caf44b802208c2 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 9 Feb 2018 17:00:44 -0300 Subject: [PATCH] Bug 16735: Fix POD format for Koha::Library::Groups methods Signed-off-by: Jonathan Druart --- Koha/Library/Groups.pm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Koha/Library/Groups.pm b/Koha/Library/Groups.pm index d3cb72a84c..1a8b8fb6cf 100644 --- a/Koha/Library/Groups.pm +++ b/Koha/Library/Groups.pm @@ -35,7 +35,9 @@ Koha::Library::Groups - Koha Library::Group object set class =head2 Class Methods -=head3 my @root_groups = $self->get_root_group() +=head3 get_root_groups + +my @root_groups = $self->get_root_group() =cut @@ -45,7 +47,9 @@ sub get_root_groups { return $self->search( { parent_id => undef }, { order_by => 'title' } ); } -=head3 my @search_groups = $self->get_search_groups({[interface => 'staff' || 'opac']})) +=head3 get_search_groups + +my @search_groups = $self->get_search_groups({[interface => 'staff' || 'opac']})) Returns search groups for the specified interface. Defaults to OPAC if no interface is specified. -- 2.20.1