|
Description
Andrii Nugged
2020-06-17 21:09:02 UTC
Awesome to see such an effort being undertaken :) *** Bug 27126 has been marked as a duplicate of this bug. *** Line number may vary:
Use of uninitialized value in string ne at /usr/share/koha/Koha/Item.pm line 169
if ( exists $updated_columns{location}
- and $self->location ne 'CART'
- and $self->location ne 'PROC'
- and $self->location ne 'MOVE' # RMA
+ and ( !defined($self->location) or $self->location !~ /^(CART|PROC)$/ )
and not exists $updated_columns{permanent_location} )
|