9 Sep
2021
9 Sep
'21
10:59 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28960 --- Comment #3 from Jonathan Druart <jonathan.druart+koha@gmail.com> --- Isn't the correct fix to call $item->home_branch->branchcode?
From Koha::Item
sub home_branch { my ($self) = @_; $self->{_home_branch} ||= Koha::Libraries->find( $self->homebranch() ); return $self->{_home_branch}; } -- You are receiving this mail because: You are watching all bug changes.