@@ -, +, @@ perl misc/sip_cli_emulator.pl -a localhost -p 6001 -su term1 -sp term1 -l CPL -m item_information --item 39999000011791 --- C4/SIP/Sip/MsgType.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/SIP/Sip/MsgType.pm +++ a/C4/SIP/Sip/MsgType.pm @@ -1220,7 +1220,7 @@ sub handle_item_information { $resp .= maybe_add( FID_ITEM_PROPS, $item->sip_item_properties, $server ); if ( my $CR = $server->{account}->{cr_item_field} ) { - $resp .= maybe_add( FID_COLLECTION_CODE, $item->$CR, $server ); + $resp .= maybe_add( FID_COLLECTION_CODE, $item->{$CR}, $server ); } else { $resp .= maybe_add( FID_COLLECTION_CODE, $item->collection_code, $server ); } --