@@ -, +, @@ - Create a club template - Create a club using this template --- Koha/Club.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/Koha/Club.pm +++ a/Koha/Club.pm @@ -48,7 +48,7 @@ sub club_template { return unless $self->club_template_id(); - return Koha::Club::Templates->find( $self->club_template_id() ); + return scalar Koha::Club::Templates->find( $self->club_template_id() ); } =head3 club_fields @@ -84,7 +84,7 @@ sub branch { return unless $self->branchcode(); - return Koha::Libraries->find( $self->branchcode() ); + return scalar Koha::Libraries->find( $self->branchcode() ); } =head3 type --