@@ -, +, @@ Unimarc 215$a(Place), 215$d(date) This is wrong, you need to have the value of 700 $a and $b from father record. --- C4/Biblio.pm | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) --- a/C4/Biblio.pm +++ a/C4/Biblio.pm @@ -3668,12 +3668,8 @@ sub prepare_host_field { } } #edition statement - if ( $field = $host->field('205') ) { - my $s = $field->as_string(); - if ($s) { - $sfd{a} = $s; - } - } + #Not present in UNIMARC 4xx structure + #URL if ( $field = $host->field('856') ) { my $s = $field->as_string('u'); --