@@ -, +, @@ patrons other than the patron who recalled. --- catalogue/detail.pl | 1 - koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) --- a/catalogue/detail.pl +++ a/catalogue/detail.pl @@ -337,7 +337,6 @@ foreach my $item (@items) { my $recall = Koha::Recalls->find({ itemnumber => $item->{itemnumber} }); if (defined $recall && $recall->status ne 'F' && $recall->status ne 'C'){ - warn 'item has been recalled'; $item->{recalled} = 1; $item->{recall} = $recall; } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -318,6 +318,10 @@
  • This item is awaiting pickup by another patron who recalled it.
  • [% END %] + [% IF ( WAITING_RECALL_FOR_A_DIFFERENT_PATRON ) %] +
  • This item is awaiting pickup by another patron who recalled it.
  • + [% END %] + [% IF ( UNKNOWN_BARCODE ) %]
  • The barcode was not found: [% barcode | html %] --