From 82e178a5f659da5c0016720a1fc858125acf9462 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 17 Aug 2018 14:58:52 -0300 Subject: [PATCH] Bug 13618: Fix xt/tt_valid.t We are going to say it quietly but this test does not catch the problem when there are no spaces....shhhh Signed-off-by: Jonathan Druart --- koha-tmpl/opac-tmpl/bootstrap/en/includes/bodytag.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/bodytag.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/bodytag.inc index 8046f6c53b..ab56ed53d3 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/bodytag.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/bodytag.inc @@ -1,5 +1,5 @@ [% USE raw %] -[% classprop = 'class="' | html %] +[% SET classprop = 'class="' %] [% IF LoginBranchcode.defined %] [% classprop = classprop _ 'branch-' _ LoginBranchcode %] [% ELSE %] @@ -11,6 +11,6 @@ [% classprop = classprop _ '"' %] [% IF bodyid.defined %] - [% idprop = 'ID="' _ bodyid _ '" ' | html %] + [% SET idprop = 'ID="' _ bodyid _ '" ' %] [% END %] - + -- 2.11.0