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

(-)a/acqui/z3950_search.pl (-2 / +6 lines)
Lines 41-46 my $issn = $input->param('issn'); Link Here
41
my $lccn            = $input->param('lccn');
41
my $lccn            = $input->param('lccn');
42
my $lccall          = $input->param('lccall');
42
my $lccall          = $input->param('lccall');
43
my $subject         = $input->param('subject');
43
my $subject         = $input->param('subject');
44
my $srchany         = $input->param('srchany');
45
my $stdid           = $input->param('stdid');
44
my $dewey           = $input->param('dewey');
46
my $dewey           = $input->param('dewey');
45
my $controlnumber   = $input->param('controlnumber');
47
my $controlnumber   = $input->param('controlnumber');
46
my $op              = $input->param('op')||'';
48
my $op              = $input->param('op')||'';
Lines 78-83 $template->param( Link Here
78
        biblionumber => $biblionumber,
80
        biblionumber => $biblionumber,
79
        dewey        => $dewey,
81
        dewey        => $dewey,
80
        subject      => $subject,
82
        subject      => $subject,
83
        srchany      => $srchany,
84
        stdid        => $stdid,
81
);
85
);
82
86
83
if ( $op ne "do_search" ) {
87
if ( $op ne "do_search" ) {
Lines 118-125 my $pars= { Link Here
118
        subject => $subject,
122
        subject => $subject,
119
        lccall => $lccall,
123
        lccall => $lccall,
120
        controlnumber => $controlnumber,
124
        controlnumber => $controlnumber,
121
        stdid => 0,
125
        stdid => $stdid,
122
        srchany => 0,
126
        srchany => $srchany,
123
};
127
};
124
Z3950Search($pars, $template);
128
Z3950Search($pars, $template);
125
output_html_with_http_headers $input, $cookie, $template->output;
129
output_html_with_http_headers $input, $cookie, $template->output;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt (-1 / +2 lines)
Lines 33-39 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
33
             <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
33
             <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
34
             <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
34
             <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
35
             <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
35
             <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
36
             <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
36
             <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li>
37
             <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li>
38
             <li><label for="stdid">Standard ID: </label> <input type="text" id="stdid" name="stdid" value="" /></li>
37
             <li><label for="frameworkcode" >Select MARC framework:</label>
39
             <li><label for="frameworkcode" >Select MARC framework:</label>
38
             <select id="frameworkcode" name="frameworkcode" >
40
             <select id="frameworkcode" name="frameworkcode" >
39
             <option value="">Default</option>
41
             <option value="">Default</option>
40
- 

Return to bug 19916