From 58d30a5816549921460fed26e8aef9e8b84561d8 Mon Sep 17 00:00:00 2001 From: Wainui Witika-Park Date: Sun, 18 Apr 2021 09:21:29 +0000 Subject: [PATCH] Bug 26703: (follow-up) corrected aqbudgets title Corrected the admin/aqbudgets file so that the page title displays correctly. To test: 1) Go to staff client 2) Go to admins module 3) Go to aqbudgets page 4) Check that the page title is "Funds > Administration > Koha" 5) Check that when modifying a fund the page title is "Modify Fund > Funds > Administration > Koha" or "Modify Fund [Fund Name] > Funds > Administration > Koha" 6) Check that when adding a fund the page title is "Add Fund > Funds > Administration > Koha" Sponsored-by: Catalyst IT --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt index 6f0a4c3812..b11ac63fc5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt @@ -5,7 +5,8 @@ [% USE Price %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] -[% IF ( budget_id ) %]Modify fund[% IF ( budget_name ) %] '[% budget_name | html %]'[% END %][% ELSE %]Add fund [% END %][% END %] › Funds[% IF op == 'add_form' %] › Administration › Koha + +[% IF op == 'add_form' %][% IF ( budget_id ) %]Modify fund[% IF ( budget_name ) %] '[% budget_name | html %]'[% END %][% ELSE %]Add fund[% END %] ›[% END %] Funds › Administration › Koha [% Asset.css("lib/jquery/plugins/treetable/stylesheets/jquery.treetable.css") | $raw %] [% INCLUDE 'doc-head-close.inc' %] -- 2.11.0