From 53175b5f7e90667d360c7c69c14d16032a231e7f Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 15 Nov 2016 15:07:14 -0300 Subject: [PATCH] Bug 17635: Fix templates with missing body id The following template files are missing body id and class and should be fixed: - members/housebound.tt - reports/cash_register_stats.tt To test: - Run: $ sudo koha-shell kohadev ; cd kohaclone k$ prove xt/tt_valid.t => FAIL: Tests fail due to the mentioned templates - Apply this patch - Run: $ sudo koha-shell kohadev ; cd kohaclone k$ prove xt/tt_valid.t => SUCCESS: Tests pass! - Sign off :-D Signed-off-by: Tomas Cohen Arazi --- koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt index 7c2bfec..74c90f4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt @@ -15,7 +15,7 @@ //]]> - + [% INCLUDE 'header.inc' %] [% INCLUDE 'patron-search.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt index bd69db7..2a4a6d4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cash_register_stats.tt @@ -58,7 +58,7 @@ $(document).ready(function() { - + [% INCLUDE 'header.inc' %] [% INCLUDE 'cat-search.inc' %] -- 2.7.4