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

--- Comment #37 from Jonathan Druart <jonathan.dru...@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.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to