@@ -, +, @@ CanBookBeRenewed --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/Circulation.pm +++ a/C4/Circulation.pm @@ -2486,7 +2486,7 @@ sub CanBookBeRenewed { my ( $resfound, $resrec, undef ) = C4::Reserves::CheckReserves( $itemnumber ); - if ( defined $resfound ) { + if ( $resfound ) { # '' when no hold was found $renewokay = 0; $error = "on_reserve"; } --