From 2e072e64dc6e85e53281d5877caa9f036811cd21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Mon, 20 Oct 2014 21:59:14 +0200 Subject: [PATCH] Bug 13112 - Add name of template file in html comment for each '.tt' file. This patch adds the name of the .tt file as a HTML comment to OPAC and Staff client pages. To test: Apply patch Open pages in OPAC and Staff client. Make sure that a comment similar to the following appears in the source code: --- koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc | 1 + koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc | 1 + 2 files changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc index 5340b55..23449a5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc @@ -1,3 +1,4 @@ + [% IF ( bidi ) %][% ELSE %][% END %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc index 683d859..b288c18 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc @@ -1,4 +1,5 @@ + [% IF ( bidi ) %][% ELSE %][% END %] -- 1.7.10.4