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

(-)a/C4/Breeding.pm (+1 lines)
Lines 264-269 sub _bib_build_query { Link Here
264
        controlnumber => '@attr 1=12 "#term" ',
264
        controlnumber => '@attr 1=12 "#term" ',
265
        srchany => '@attr 1=1016 "#term" ',
265
        srchany => '@attr 1=1016 "#term" ',
266
        stdid   => '@attr 1=1007 "#term" ',
266
        stdid   => '@attr 1=1007 "#term" ',
267
        publicationyear => '@attr 1=31 "#term" '
267
    };
268
    };
268
269
269
    return _build_query( $pars, $qry_build );
270
    return _build_query( $pars, $qry_build );
(-)a/cataloguing/z3950_search.pl (+3 lines)
Lines 42-47 my $dewey = $input->param('dewey'); Link Here
42
my $controlnumber = $input->param('controlnumber');
42
my $controlnumber = $input->param('controlnumber');
43
my $stdid         = $input->param('stdid');
43
my $stdid         = $input->param('stdid');
44
my $srchany       = $input->param('srchany');
44
my $srchany       = $input->param('srchany');
45
my $publicationyear = $input->param('publicationyear');
45
my $op            = $input->param('op')||'';
46
my $op            = $input->param('op')||'';
46
47
47
my $page            = $input->param('current_page') || 1;
48
my $page            = $input->param('current_page') || 1;
Lines 68-73 $template->param( Link Here
68
    biblionumber => $biblionumber,
69
    biblionumber => $biblionumber,
69
    dewey        => $dewey,
70
    dewey        => $dewey,
70
    subject      => $subject,
71
    subject      => $subject,
72
    publicationyear => $publicationyear,
71
);
73
);
72
74
73
if ( $op ne "do_search" ) {
75
if ( $op ne "do_search" ) {
Lines 111-116 my $pars= { Link Here
111
        controlnumber => $controlnumber,
113
        controlnumber => $controlnumber,
112
        stdid => $stdid,
114
        stdid => $stdid,
113
        srchany => $srchany,
115
        srchany => $srchany,
116
        publicationyear => $publicationyear,
114
};
117
};
115
Z3950Search($pars, $template);
118
Z3950Search($pars, $template);
116
output_html_with_http_headers $input, $cookie, $template->output;
119
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt (-1 / +1 lines)
Lines 26-31 Link Here
26
        <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
26
        <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
27
        <li><label for="title">Title: </label> <input type="text" id="title"  name="title" value="[% title | html %]" /></li>
27
        <li><label for="title">Title: </label> <input type="text" id="title"  name="title" value="[% title | html %]" /></li>
28
        <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
28
        <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
29
        <li><label for="publicationyear">Publication year: </label> <input type="text" id="publicationyear" name="publicationyear" value="[% publicationyear | html %]" /></li>
29
        <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
30
        <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
30
        <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
31
        <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
31
        <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
32
        <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
32
- 

Return to bug 21921