From 9ece85a12fa62114d78c0dfa0336c30f8c86ca25 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 21 Apr 2022 16:30:24 +0200 Subject: [PATCH] Bug 30583: Fix hold system for translated templates There are missing quotes, and the translate script is messing up with the generated template. Error is: Template process failed: file error - parse error - holds_table.inc line 216-217: unexpected token (hold) The generated line, without this patch is: 216 With this patch applied: 216 Signed-off-by: Lucas Gass Signed-off-by: Tomas Cohen Arazi Signed-off-by: Fridolin Somers Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc index b3951572ca..dc12ab7fd1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc @@ -226,7 +226,7 @@ [%- END -%] [% IF ( hold.intransit || hold.atdestination ) %] - + [% ELSE %] [% END %] -- 2.39.5