From 1c991fbe8583e7e2725fa867e3d599495cc43d16 Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov <jcamins@cpbibliography.com> 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 ) %] › <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> › <strong>Step 3: Choose columns </strong> [% ELSIF ( step_4 ) %] › <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> › <strong>Step 4: Specify a value </strong> [% ELSIF ( step_5 ) %] › <a href="/cgi-bin/koha/reports/dictionary.pl">Dictionary</a> › <strong>Step 5: Confirm definition</strong> -[% ELSE %]<strong> Dictionary </strong>[% END %]</div> +[% ELSE %] › <strong> Dictionary </strong>[% END %]</div> <div id="doc3" class="yui-t2"> -- 1.7.9.5