@@ -, +, @@ items both checkout out and lost record, either by using longoverdue.pl or by editing the itemlost field in the database directly. --- C4/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/Search.pm +++ a/C4/Search.pm @@ -2115,7 +2115,7 @@ sub searchResults { # if something's checked out and lost, mark it as 'long overdue' if ( $item->{itemlost} ) { - $onloan_items->{$prefix}->{longoverdue}++; + $onloan_items->{$key}->{longoverdue}++; $longoverdue_count++; } else { # can place holds as long as item isn't lost --