29 Nov
2017
29 Nov
'17
6 p.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532 --- Comment #36 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Comment on attachment 69102 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=69102 Bug 19532: Cancel recall and see recalls in OPAC
+=head3 branch + +Returns the related Koha::Library object for this Hold + +=cut + +sub branch { + my ($self) = @_; + + $self->{_branch} ||= Koha::Libraries->find( $self->branchcode() ); + + return $self->{_branch}; +}
Please call this method 'library' instead, and 'patron' instead of 'borrower' on the followup. -- You are receiving this mail because: You are watching all bug changes.