https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37842 Bug ID: 37842 Summary: GetReserveStatus does not deal with found="T" Change sponsored?: --- Product: Koha Version: unspecified Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 - low Component: Hold requests Assignee: koha-bugs@lists.koha-community.org Reporter: jonathan.druart@gmail.com QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com 786 if(defined $found) { 787 return 'Waiting' if $found eq 'W' and $priority == 0; 788 return 'Processing' if $found eq 'P'; 789 return 'Finished' if $found eq 'F'; 790 } 791 792 return 'Reserved' if defined $priority && $priority > 0; 793 794 return ''; # empty string here will remove need for checking undef, or less log lines It seems that we should deal with $found="T" here. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.