From 1c991fbe8583e7e2725fa867e3d599495cc43d16 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Mon, 18 Feb 2013 08:16:01 -0500 Subject: [PATCH] Bug 9658: Incorrect breadcrumb on report dictionary Prior to this patch, the breadcrumb on the reports dictionary looks like this: Home > Reports > Guided reports wizard Dictionary (notice the lack of punctuation between "wizard" and "Dictionary"). This patch makes it consistent with the rest of the system so it looks like this: Home > Reports > Guided reports wizard > Dictionary I left dictionary bolded, since that seems to have been intentional, even if I can't find a good reason for it. To test: 1) View reports dictionary page before and after patch is applied, observing difference. --- .../prog/en/modules/reports/dictionary.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt index 2e15834..44c4dfb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/dictionary.tt @@ -14,7 +14,7 @@ [% ELSIF ( step_3 ) %] › DictionaryStep 3: Choose columns [% ELSIF ( step_4 ) %] › DictionaryStep 4: Specify a value [% ELSIF ( step_5 ) %] › DictionaryStep 5: Confirm definition -[% ELSE %] Dictionary [% END %] +[% ELSE %] › Dictionary [% END %]
-- 1.7.9.5