@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -3,7 +3,6 @@ [% USE KohaDates %] [% USE Branches %] [% USE Koha %] -[% USE Borrowers %] [% USE ItemTypes %] [% USE AuthorisedValues %] [% USE ColumnsSettings %] @@ -182,11 +181,11 @@ [% END %] - [% IF return_date_was_overriden && Borrowers.IsDebarred( borrower ) %] + [% IF return_date_was_overriden && issue.patron.is_debarred %]

- - [% patron.firstname | html %] [% patron.surname | html %] + + [% issue.patron.firstname | html %] [% issue.patron.surname | html %] is restricted. Please verify this patron should still be restricted.

--