From 3facec08c5a4df96402f07a69a848c1be894af5b Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Tue, 5 Feb 2019 00:42:34 +0100 Subject: [PATCH] Bug 21441: Fix wrong reference to a 'holds' table on system information tab It looks like a typo snuck in on the about page, listing a holds table instead of reserves. To test: - Manually create the same PK (reserve_id) in reserves and old_reserves - Verify that the message on about > system information now correctly lists those tables (not holds and old_reserves) --- koha-tmpl/intranet-tmpl/prog/en/modules/about.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index 30992ca99a..a850576eee 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -222,7 +222,7 @@ [% END %] [% IF ai_holds %]

Holds

-

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

+

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

[% FOR h IN ai_holds %][% h.reserve_id | html %][% UNLESS loop.last %], [% END %][% END %]

[% END %]
-- 2.17.1