@@ -, +, @@ 17 - Run through the Web-installer in Norwegian and choose NORMARC as the MARC dialect - Go to Home > Cataloging > Add MARC record and start to add a new record - Click in the 000 field and it should be filled with: " nam a22 2 4500" - Reload the page, then open the value builder for 000 and click on OK - 000 should get filled with the same string as above - Apply the patch and repeat the steps from above. The default value for 000 should now be: " nam a22 1 4500" --- cataloguing/value_builder/normarc_leader.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/cataloguing/value_builder/normarc_leader.pl +++ a/cataloguing/value_builder/normarc_leader.pl @@ -45,7 +45,7 @@ my $res=" function Focus$function_name(subfield_managed) { if(!document.getElementById(\"$field_number\").value){ - document.getElementById(\"$field_number\").value = ' nam a22 2 4500'; + document.getElementById(\"$field_number\").value = ' nam a22 1 4500'; } return 1; } @@ -81,7 +81,7 @@ my ($template, $loggedinuser, $cookie) flagsrequired => {editcatalogue => 1}, debug => 1, }); - $result = " nam a22 2 4500" unless $result; + $result = " nam a22 1 4500" unless $result; my $f5 = substr($result,5,1); my $f6 = substr($result,6,1); my $f7 = substr($result,7,1); --