Bug 2789 Fix UNIMAC leader plugin

The plugin was returning a 25 characters length leader rather than 24
characters. So leader was recreated automatically, removing user update,
before writing biblio record.

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
This commit is contained in:
Frédéric Demians 2010-06-04 17:04:18 +02:00 committed by Galen Charlton
parent 5f0f488596
commit 77f04bd426

View file

@ -298,7 +298,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+' 4500';
window.close();
return false;
}