31 Jul
2025
31 Jul
'25
10:51 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23830 --- Comment #8 from Jonathan Druart <jonathan.druart@gmail.com> --- - return Koha::AuthorisedValues->search({ - branchcode => $self->branchcode, - category => 'ILLSTATUS', - authorised_value => $self->SUPER::status_alias - })->next; + return Koha::AuthorisedValues->search( + { + category => 'ILLSTATUS', + authorised_value => $self->SUPER::status_alias + }, + {}, + $self->branchcode + )->next; This change is wrong: 1. left-over $self->branchcode 2. we forgot to use search_with_library_limits -- You are receiving this mail because: You are watching all bug changes.