Lines 101-113
if ( ! defined C4::Context->config('zebra_bib_index_mode') ) {
Link Here
|
101 |
if C4::Context->config('zebra_bib_index_mode') eq 'grs1'; |
101 |
if C4::Context->config('zebra_bib_index_mode') eq 'grs1'; |
102 |
} |
102 |
} |
103 |
|
103 |
|
104 |
if ( (C4::Context->config('zebra_bib_index_mode') eq 'dom') && ($context->{'server'}->{'biblioserver'}->{'config'} !~ /zebra-biblios-dom.cfg/) ) { |
104 |
if ( (C4::Context->config('zebra_bib_index_mode') eq 'dom') && |
|
|
105 |
($context->{'server'}->{'biblioserver'}->{'config'} !~ /zebra-biblios-dom.cfg/) ) { |
106 |
|
105 |
push @xml_config_warnings, { |
107 |
push @xml_config_warnings, { |
106 |
error => 'zebra_bib_index_mode_mismatch_warn' |
108 |
error => 'zebra_bib_index_mode_mismatch_warn' |
107 |
}; |
109 |
}; |
108 |
} |
110 |
} |
109 |
|
111 |
|
110 |
if ( (C4::Context->config('zebra_auth_index_mode') eq 'grs1') && ($context->{'server'}->{'biblioserver'}->{'config'} =~ /zebra-biblios-dom.cfg/) ) { |
112 |
if ( (C4::Context->config('zebra_bib_index_mode') eq 'grs1') && |
|
|
113 |
($context->{'server'}->{'biblioserver'}->{'config'} =~ /zebra-biblios-dom.cfg/) ) { |
114 |
|
111 |
push @xml_config_warnings, { |
115 |
push @xml_config_warnings, { |
112 |
error => 'zebra_bib_index_mode_mismatch_warn' |
116 |
error => 'zebra_bib_index_mode_mismatch_warn' |
113 |
}; |
117 |
}; |
114 |
- |
|
|