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

(-)a/C4/Breeding.pm (+1 lines)
Lines 258-263 sub _bib_build_query { Link Here
258
        controlnumber => '@attr 1=12 "#term" ',
258
        controlnumber => '@attr 1=12 "#term" ',
259
        srchany => '@attr 1=1016 "#term" ',
259
        srchany => '@attr 1=1016 "#term" ',
260
        stdid   => '@attr 1=1007 "#term" ',
260
        stdid   => '@attr 1=1007 "#term" ',
261
        publicationyear => '@attr 1=31 "#term" '
261
    };
262
    };
262
263
263
    return _build_query( $pars, $qry_build );
264
    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 / +4 lines)
Lines 31-36 Link Here
31
                                <li>
31
                                <li>
32
                                    <label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
32
                                    <label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
33
                                <li>
33
                                <li>
34
                                    <label for="publicationyear">Publication year: </label> <input type="text" id="publicationyear" name="publicationyear" value="[% publicationyear | html %]" /></li>
35
                                <li>
34
                                    <label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
36
                                    <label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
35
                                <li>
37
                                <li>
36
                                    <label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
38
                                    <label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
Lines 88-93 Link Here
88
                        You searched for:
90
                        You searched for:
89
                        [% IF ( title ) %]<em>Title: </em><span class="term">[% title | html %]</span> [% END %]
91
                        [% IF ( title ) %]<em>Title: </em><span class="term">[% title | html %]</span> [% END %]
90
                        [% IF ( author ) %]<em>Author: </em><span class="term">[% author | html %]</span> [% END %]
92
                        [% IF ( author ) %]<em>Author: </em><span class="term">[% author | html %]</span> [% END %]
93
                        [% IF ( publicationyear ) %]<em>Publication year: </em><span class="term">[% publicationyear | html %]</span> [% END %]
91
                        [% IF ( isbn ) %]<em>ISBN: </em><span class="term">[% isbn | html %]</span> [% END %]
94
                        [% IF ( isbn ) %]<em>ISBN: </em><span class="term">[% isbn | html %]</span> [% END %]
92
                        [% IF ( issn ) %]<em>ISSN: </em><span class="term">[% issn | html %]</span> [% END %]
95
                        [% IF ( issn ) %]<em>ISSN: </em><span class="term">[% issn | html %]</span> [% END %]
93
                        [% IF ( lccall ) %]<em>LC call number: </em><span class="term">[% lccall | html %]</span> [% END %]
96
                        [% IF ( lccall ) %]<em>LC call number: </em><span class="term">[% lccall | html %]</span> [% END %]
Lines 192-197 Link Here
192
                            <input type="hidden" id="controlnumber" name="controlnumber" value="[% controlnumber | html %]" />
195
                            <input type="hidden" id="controlnumber" name="controlnumber" value="[% controlnumber | html %]" />
193
                            <input type="hidden" id="srchany" name="srchany" value="[% srchany | html %]" />
196
                            <input type="hidden" id="srchany" name="srchany" value="[% srchany | html %]" />
194
                            <input type="hidden" id="author" name="author" value="[% author | html %]" />
197
                            <input type="hidden" id="author" name="author" value="[% author | html %]" />
198
                            <input type="hidden" id="publicationyear" name="publicationyear" value="[% publicationyear | html %]" />
195
                            <input type="hidden" id="subject" name="subject" value="[% subject | html %]" />
199
                            <input type="hidden" id="subject" name="subject" value="[% subject | html %]" />
196
                            <input type="hidden" id="dewey" name="dewey" value="[% dewey | html %]" />
200
                            <input type="hidden" id="dewey" name="dewey" value="[% dewey | html %]" />
197
                            <input type="hidden" id="stdid" name="stdid" value="[% stdid | html %]" />
201
                            <input type="hidden" id="stdid" name="stdid" value="[% stdid | html %]" />
198
- 

Return to bug 21921