(bug #2853) fix an error in returned string
authorNahuel Angelinetti <nahuel.angelinetti@biblibre.com>
Tue, 9 Dec 2008 14:15:43 +0000 (15:15 +0100)
committerGalen Charlton <galen.charlton@liblime.com>
Thu, 11 Dec 2008 14:39:50 +0000 (08:39 -0600)
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: Galen Charlton <galen.charlton@liblime.com>
koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader.tmpl

index 8e9e6a3..7afbbab 100644 (file)
@@ -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;
        }