Bug 36996: (follow-up) Fix for notforloan name change from bug 28762

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Martin Renvoize 2024-07-23 16:51:12 +01:00
parent 728e83bb47
commit 4a5ebab45f
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -2615,7 +2615,7 @@ sub z3950_status {
push @statuses, $status_strings->{LOST} // "LOST"; push @statuses, $status_strings->{LOST} // "LOST";
} }
if ( $self->is_notforloan() ) { if ( $self->effective_not_for_loan_status() ) {
push @statuses, $status_strings->{NOT_FOR_LOAN} // "NOT_FOR_LOAN"; push @statuses, $status_strings->{NOT_FOR_LOAN} // "NOT_FOR_LOAN";
} }