@@ -, +, @@ error --- .../prog/en/modules/admin/preferences/circulation.pref | 4 ++-- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt | 4 ++-- t/db_dependent/Circulation.t | 1 - 3 files changed, 4 insertions(+), 5 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref @@ -392,13 +392,13 @@ Circulation: no: Disable - the on-site for all cases (Even if a user is debarred, etc.). - - - When a patron's checked out item is late, + - When a patron's checked out item is overdue, - pref: OverduesBlockRenewing type: choice choices: allow: allow renewing. blockitem: block renewing only for this item. - block: block renewing for all his items. + block: block renewing for all the patron's items. - - If patron is restricted, - pref: RestrictionBlockRenewing --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-user.tt @@ -231,7 +231,7 @@ [% ELSIF ( ISSUE.too_many ) %] Not renewable [% ELSIF ( ISSUE.norenew_overdue ) %] - Not allowed (overdue on a document) + Not allowed (overdue) [% ELSIF ( ISSUE.auto_renew || ISSUE.auto_too_soon ) %] Automatic renewal ([% ISSUE.renewsleft %] of [% ISSUE.renewsallowed %] renewals remaining) @@ -466,7 +466,7 @@ [% END %] ([% OVERDUE.renewsleft %] of [% OVERDUE.renewsallowed %] renewals remaining) [% ELSIF ( OVERDUE.norenew_overdue ) %] - Not allowed(overdue on a document) + Not allowed(overdue) [% ELSIF ( OVERDUE.onreserve ) %] On hold [% ELSE %] --- a/t/db_dependent/Circulation.t +++ a/t/db_dependent/Circulation.t @@ -379,7 +379,6 @@ C4::Context->dbh->do("DELETE FROM accountlines"); ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber2, 1); is( $renewokay, 1, 'Can renew item 2, item-level hold is on item 1'); - # Items can't fill hold for reasons ModItem({ notforloan => 1 }, $biblionumber, $itemnumber); ( $renewokay, $error ) = CanBookBeRenewed($renewing_borrowernumber, $itemnumber, 1); --