[Koha-patches] [PATCH] (bug #2853) fix an error in returned string

Nahuel Angelinetti nahuel.angelinetti at biblibre.com
Tue Dec 9 15:15:43 CET 2008


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.
---
 .../cataloguing/value_builder/unimarc_leader.tmpl  |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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 8e9e6a3..7afbbab 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;
 	}
-- 
1.5.6.3




More information about the Koha-patches mailing list