From e0b17ca3f2baea76a411c6c686f287d18410593d Mon Sep 17 00:00:00 2001 From: Wainui Witika-Park Date: Sun, 18 Apr 2021 09:38:03 +0000 Subject: [PATCH] Bug 26703: (follow-up) corrected currencies title Corrected the page title in the admin/currency file. To test: 1) Go to staff client 2) Go to admin/currency 3) Check that the page title is "Currencies > Currencies & Exchange rates > Administration > Koha" 4) Check that when adding a currency, the page title is "New currency > Currencies & Exchange rates > Administration > Koha" 5) Check that when modifying a currency, the page title is "Modify currency '[Currency name]' > Currencies & Exchange rates > Administration > Koha" 6) Check that when deleting a currency, the page title is "Confirm deletion of currency '[Currency name]' > Currencies & Exchange rates > Administration > Koha" Sponsored-by: Catalyst IT --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt index 3677dfbf8d..c9648cacf1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt @@ -7,7 +7,7 @@ [% INCLUDE 'doc-head-open.inc' %] [% IF op == 'add_form' %][% IF currency %]Modify currency '[% currency.currency | html %]'[% ELSE %]New currency[% END %][% END %] [% IF op == 'delete_confirm' %]Confirm deletion of currency '[% currency.currency | html %]'[% END %] -[% IF op == 'list' %]Currencies[% END %] › Exchange rates › Currencies & Administration › Koha +[% IF op == 'list' %]Currencies[% END %] › Currencies & Exchange rates › Administration › Koha [% INCLUDE 'doc-head-close.inc' %] -- 2.11.0