From 881b256309ef6cb79e259a400f624a23a4edfd56 Mon Sep 17 00:00:00 2001 From: Nahuel Angelinetti Date: Tue, 9 Dec 2008 15:15:43 +0100 Subject: [PATCH] (bug #2853) fix an error in returned string this patch delete the last char of the returned string, that is not conform to unimarc, only one blankchar must be at the end of the leader string. Signed-off-by: Henri-Damien LAURENT --- .../en/modules/cataloguing/value_builder/unimarc_leader.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader.tmpl index 8e9e6a3073..7afbbab029 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader.tmpl @@ -296,7 +296,7 @@ function report() { field.value = ' '+document.f_pop.f5.value + document.f_pop.f6.value+ document.f_pop.f7.value+ document.f_pop.f8.value+ ' '+ - document.f_pop.f17.value+ document.f_pop.f18.value+' 450 '; + document.f_pop.f17.value+ document.f_pop.f18.value+' 450 '; window.close(); return false; } -- 2.39.2