Lines 217-223
if ( C4::Context->config('zebra_auth_index_mode')
Link Here
|
217 |
push @xml_config_warnings, { error => 'zebra_auth_index_mode_is_grs1' }; |
217 |
push @xml_config_warnings, { error => 'zebra_auth_index_mode_is_grs1' }; |
218 |
} |
218 |
} |
219 |
|
219 |
|
220 |
if ( (C4::Context->config('zebra_auth_index_mode') eq 'dom') && ($context->{'server'}->{'authorityserver'}->{'config'} !~ /zebra-authorities-dom.cfg/) ) { |
220 |
if( ( C4::Context->config('zebra_auth_index_mode') |
|
|
221 |
and C4::Context->config('zebra_auth_index_mode') eq 'dom' ) |
222 |
&& ( $context->{'server'}->{'authorityserver'}->{'config'} !~ /zebra-authorities-dom.cfg/ ) ) |
223 |
{ |
221 |
push @xml_config_warnings, { |
224 |
push @xml_config_warnings, { |
222 |
error => 'zebra_auth_index_mode_mismatch_warn' |
225 |
error => 'zebra_auth_index_mode_mismatch_warn' |
223 |
}; |
226 |
}; |
224 |
- |
|
|