From 63d5559f4d0e774df7f31c0c31402f80ca82e50e Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 8 Jun 2018 08:50:02 +0200 Subject: [PATCH] Bug 20271: (QA follow-up) Additional about cleanup Still found references to biblios and items in script and template. Test plan: Check about page again. Signed-off-by: Marcel de Rooy Signed-off-by: Martin Renvoize Signed-off-by: Josef Moravec --- about.pl | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/about.pl b/about.pl index 294c77a..19fe7fd 100755 --- a/about.pl +++ b/about.pl @@ -449,7 +449,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, diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index f6cf9ae..c291990 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/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" %]:

-- 2.1.4