(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: Galen Charlton <galen.charlton@liblime.com>
This commit is contained in:
Nahuel Angelinetti 2008-12-09 15:15:43 +01:00 committed by Galen Charlton
parent 2b8cb18f50
commit 3ad66441c8

View 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;
}