[Koha-bugs] [Bug 5670] Housebound Readers Module

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Sep 8 11:51:13 CEST 2016


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5670

--- Comment #37 from Jonathan Druart <jonathan.druart at bugs.koha-community.org> ---
 50 sub chooser {
 51     my ( $self ) = @_;
 52     return $self->_result->chooser_brwnumber;
 53 }

should be

sub chooser {
    my ( $self ) = @_
    my $rs = $self->_result->chooser_brwnumber;
    return Koha::Patron->_new_from_dbic( $rs );
}

See bug 17094.

And then you can remove the TODO in the tests :)

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the QA Contact for the bug.


More information about the Koha-bugs mailing list