@@ -, +, @@ --- about.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) --- a/about.pl +++ a/about.pl @@ -448,7 +448,7 @@ if ( C4::Context->preference('WebBasedSelfCheck') q|select r.reserve_id from reserves r join old_reserves o on r.reserve_id=o.reserve_id|, { Slice => {} } ); - if ( @$patrons or @$biblios or @$items or @$checkouts or @$holds ) { + if ( @$patrons or @$checkouts or @$holds ) { $template->param( has_ai_issues => 1, ai_patrons => $patrons, --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -205,16 +205,6 @@

The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:

[% FOR p IN ai_patrons %][% p.borrowernumber %][% UNLESS loop.last %], [% END %][% END %]

[% END %] - [% IF ai_biblios %] -

Biblios

-

The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:

-

[% FOR b IN ai_biblios %][% b.biblionumber %][% UNLESS loop.last %], [% END %][% END %]

- [% END %] - [% IF ai_items %] -

Items

-

The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:

-

[% FOR i IN ai_items %][% i.itemnumber %][% UNLESS loop.last %], [% END %][% END %]

- [% END %] [% IF ai_checkouts %]

Checkouts

The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:

--