@@ -, +, @@ --- C4/SIP/ILS/Item.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/SIP/ILS/Item.pm +++ a/C4/SIP/ILS/Item.pm @@ -276,7 +276,7 @@ sub sip_circulation_status { elsif ( grep { $_->{itemnumber} == $self->{itemnumber} } @{ $self->{hold_attached} } ) { return '08'; # waiting on hold shelf } - elsif ( $self->{location} eq 'CART' ) { + elsif ( $self->{location} and $self->{location} eq 'CART' ) { return '09'; # waiting to be re-shelved } elsif ( $self->{damaged} ) { --