From d6900c219299a3cd1272305f194b1f216b73d2e8 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 4 May 2015 08:18:47 +0200 Subject: [PATCH] [Signed-off] Bug 14125: Fix template problems on csv profiles help page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Page uses TAGS Directive in order to print TT directives in the manual without having them interpreted, but fails to switch back/change all following TT code, causing problems in displaying the file correctly. See TT documentation: http://www.template-toolkit.org/docs/manual/Directives.html#section_TAGS As [- ... -] showed up in translations, I chose to switch back instead of changing the TT variable and INCLUDE. To test: - Go to tools > csv profiles - Open the help page - Verify the link to the manual includes the version and works - Verify the footer shows up correctly with the edit buttons Works as expected. Signed-off-by: Marc VĂ©ron --- koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt index 096ffca..2ff291b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/csv-profiles.tt @@ -136,7 +136,8 @@

Note that the authorized values won't be replaced by their descriptions.

+[- TAGS default -]

See the full documentation for CSV Profiles in the manual (online).

-[- INCLUDE 'help-bottom.inc' -] +[% INCLUDE 'help-bottom.inc' %] -- 1.7.10.4