@@ -, +, @@ --- Koha/Patron.pm | 2 +- Koha/Patron/Relationship.pm | 4 ++-- opac/opac-memberentry.pl | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) --- a/Koha/Patron.pm +++ a/Koha/Patron.pm @@ -414,7 +414,7 @@ sub category { sub image { my ( $self ) = @_; - return scalar Koha::Patron::Images->find( $self->borrowernumber ); + return Koha::Patron::Images->find( $self->borrowernumber ); } =head3 library --- a/Koha/Patron/Relationship.pm +++ a/Koha/Patron/Relationship.pm @@ -82,7 +82,7 @@ sub guarantor { return unless $self->guarantor_id; - return scalar Koha::Patrons->find( $self->guarantor_id ); + return Koha::Patrons->find( $self->guarantor_id ); } =head3 guarantee @@ -94,7 +94,7 @@ Returns the Koha::Patron object for the guarantee sub guarantee { my ( $self ) = @_; - return scalar Koha::Patrons->find( $self->guarantee_id ); + return Koha::Patrons->find( $self->guarantee_id ); } =head3 type --- a/opac/opac-memberentry.pl +++ a/opac/opac-memberentry.pl @@ -332,7 +332,7 @@ elsif ( $action eq 'edit' ) { #Display logged in borrower's data } my $captcha = random_string("CCCCC"); -my $patron_param = scalar Koha::Patrons->find( $borrowernumber ); +my $patron_param = Koha::Patrons->find( $borrowernumber ); $template->param( has_guarantor_flag => $patron_param->guarantor_relationships->guarantors->_resultset->count ) if $patron_param; --