@@ -, +, @@ 1) Try to renew a book in intranet through the renewal tab 2) Notice it gives error 3) Apply patch 4) Notice the error is now gone --- circ/renew.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/circ/renew.pl +++ a/circ/renew.pl @@ -63,7 +63,7 @@ if ($barcode) { if ($issue) { - $borrower = $issue->borrower(); + $borrower = $issue->patron(); if ( ( $borrower->debarred() || q{} ) lt dt_from_string()->ymd() ) { my $can_renew; --