@@ -, +, @@ circ/renew.pl object reference at /usr/share/kohaclone/circ/renew.pl line 57 - Apply patch - Try to renew items that are or are not checked out. Error no longer occurs. --- circ/renew.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/circ/renew.pl +++ a/circ/renew.pl @@ -54,7 +54,7 @@ if ($barcode) { if ($item) { - $issue = $item->issues()->single(); + $issue = $item->issue(); if ($issue) { --