@@ -, +, @@ is grs1. --- C4/Context.pm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) --- a/C4/Context.pm +++ a/C4/Context.pm @@ -734,18 +734,19 @@ sub _new_Zconn { $server //= "biblioserver"; $syntax //= "XML"; - if ( ($server eq 'biblioserver' and $context->{'config'}->{'zebra_bib_index_mode'} eq 'grs1') - or ($server eq 'authorityserver' and $context->{'config'}->{'zebra_auth_index_mode'} eq 'grs1')) { + if ( ($server eq 'biblioserver' and $context->{'config'}->{'zebra_bib_index_mode'} eq 'dom') + and ($server eq 'authorityserver' and $context->{'config'}->{'zebra_auth_index_mode'} eq 'dom')) { + + $elementSetName = 'marcxml'; + $syntax = 'XML'; + + } else { $elementSetName = 'F'; $syntax = ( $context->preference("marcflavour") eq 'UNIMARC' ) ? 'unimarc' : 'usmarc'; - } else { - - $elementSetName = 'marcxml'; - $syntax = 'XML'; } my $host = $context->{'listen'}->{$server}->{'content'}; --