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

(-)a/acqui/z3950_search.pl (-2 / +6 lines)
Lines 42-47 my $issn = $input->param('issn'); Link Here
42
my $lccn            = $input->param('lccn');
42
my $lccn            = $input->param('lccn');
43
my $lccall          = $input->param('lccall');
43
my $lccall          = $input->param('lccall');
44
my $subject         = $input->param('subject');
44
my $subject         = $input->param('subject');
45
my $srchany         = $input->param('srchany');
46
my $stdid           = $input->param('stdid');
45
my $dewey           = $input->param('dewey');
47
my $dewey           = $input->param('dewey');
46
my $controlnumber   = $input->param('controlnumber');
48
my $controlnumber   = $input->param('controlnumber');
47
my $op              = $input->param('op')||'';
49
my $op              = $input->param('op')||'';
Lines 79-84 $template->param( Link Here
79
        biblionumber => $biblionumber,
81
        biblionumber => $biblionumber,
80
        dewey        => $dewey,
82
        dewey        => $dewey,
81
        subject      => $subject,
83
        subject      => $subject,
84
        srchany      => $srchany,
85
        stdid        => $stdid,
82
);
86
);
83
87
84
if ( $op ne "do_search" ) {
88
if ( $op ne "do_search" ) {
Lines 119-126 my $pars= { Link Here
119
        subject => $subject,
123
        subject => $subject,
120
        lccall => $lccall,
124
        lccall => $lccall,
121
        controlnumber => $controlnumber,
125
        controlnumber => $controlnumber,
122
        stdid => 0,
126
        stdid => $stdid,
123
        srchany => 0,
127
        srchany => $srchany,
124
};
128
};
125
Z3950Search($pars, $template);
129
Z3950Search($pars, $template);
126
output_html_with_http_headers $input, $cookie, $template->output;
130
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 70-76 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : Link Here
70
             <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
70
             <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author | html %]" /></li>
71
             <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
71
             <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn | html %]" /></li>
72
             <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
72
             <li><label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
73
             <li><label for="srchany">Keyword (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li>
73
             <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li>
74
             <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li>
75
             <li><label for="stdid">Standard ID: </label> <input type="text" id="stdid" name="stdid" value="" /></li>
74
             <li><label for="frameworkcode" >Select MARC framework:</label>
76
             <li><label for="frameworkcode" >Select MARC framework:</label>
75
             <select id="frameworkcode" name="frameworkcode" >
77
             <select id="frameworkcode" name="frameworkcode" >
76
             <option value="">Default</option>
78
             <option value="">Default</option>
77
- 

Return to bug 19916