From 0e3344eb2092a762ac31dce9d0a8dc1e58b08f31 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. Signed-off-by: Bernardo Gonzalez Kriegel Comment: Trivial patch. Work as described. No errors Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/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 20c56b7..ee40dcf 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.10.4