View | Details | Raw Unified | Return to bug 12747
Collapse All | Expand All

(-)a/C4/Breeding.pm (-1 / +3 lines)
Lines 226-237 sub Z3950Search { Link Here
226
        push @servers, {id => $id};
226
        push @servers, {id => $id};
227
    }
227
    }
228
228
229
230
    $template->param(
229
    $template->param(
231
        breeding_loop => \@breeding_loop,
230
        breeding_loop => \@breeding_loop,
232
        servers => \@servers,
231
        servers => \@servers,
233
        errconn       => \@errconn
232
        errconn       => \@errconn
234
    );
233
    );
234
    $template->param(
235
        additionalFields => '1'
236
    ) if C4::Context->preference('AdditionalFieldsInZ3950ResultSearch');
235
}
237
}
236
238
237
sub _build_query {
239
sub _build_query {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt (-3 / +2 lines)
Lines 132-138 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
132
        <th>Author</th>
132
        <th>Author</th>
133
        <th>ISBN</th>
133
        <th>ISBN</th>
134
        <th>LCCN</th>
134
        <th>LCCN</th>
135
        [%- IF Koha.Preference( 'AdditionalFieldsInZ3950ResultSearch' ) -%]
135
        [% IF additionalFields %]
136
        <th>Additional fields</th>
136
        <th>Additional fields</th>
137
        [% END %]
137
        [% END %]
138
        <th>Preview</th>
138
        <th>Preview</th>
Lines 147-153 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
147
            <td>[% breeding_loo.author %]</td>
147
            <td>[% breeding_loo.author %]</td>
148
            <td>[% breeding_loo.isbn %]</td>
148
            <td>[% breeding_loo.isbn %]</td>
149
            <td>[% breeding_loo.lccn %]</td>
149
            <td>[% breeding_loo.lccn %]</td>
150
            [%- IF Koha.Preference( 'AdditionalFieldsInZ3950ResultSearch' ) -%]
150
            [% IF additionalFields %]
151
            <td>
151
            <td>
152
               <dl>
152
               <dl>
153
                  [% FOREACH addnumberfield IN breeding_loo.addnumberfields %]
153
                  [% FOREACH addnumberfield IN breeding_loo.addnumberfields %]
154
- 

Return to bug 12747