@@ -, +, @@ (13024 merge problem) - Perform a checkout on a patron - Check so all checkouts are shown immediately - Apply the patch - Reload page - Sign off :-D --- svc/checkouts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/svc/checkouts +++ a/svc/checkouts @@ -152,7 +152,7 @@ while ( my $c = $sth->fetchrow_hashref() ) { author => $c->{author}, barcode => $c->{barcode}, itemtype => $item_level_itypes ? $c->{itype} : $c->{itemtype}, - itemtype_description => $itemtype->{translated_description}, + itemtype_description => $item_level_itypes ? $c->{itype_description} : $c->{itemtype_description}, location => $c->{location} ? GetAuthorisedValueByCode( 'LOC', $c->{location} ) : q{}, itemnotes => $c->{itemnotes}, itemnotes_nonpublic => $c->{itemnotes_nonpublic}, --