Lines 41-47
my $relationship = $query->param('relationship') || '';
Link Here
|
41 |
|
41 |
|
42 |
my ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
42 |
my ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
43 |
{ |
43 |
{ |
44 |
template_name => ( $op eq 'cud-do_search' ) |
44 |
template_name => ( $op eq 'do_search' ) |
45 |
? 'authorities/searchresultlist-auth.tt' |
45 |
? 'authorities/searchresultlist-auth.tt' |
46 |
: 'authorities/auth_finder.tt', |
46 |
: 'authorities/auth_finder.tt', |
47 |
query => $query, |
47 |
query => $query, |
Lines 53-59
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
Link Here
|
53 |
my $authority_types = Koha::Authority::Types->search( {}, { order_by => ['authtypetext'] } ); |
53 |
my $authority_types = Koha::Authority::Types->search( {}, { order_by => ['authtypetext'] } ); |
54 |
|
54 |
|
55 |
# If search form posted |
55 |
# If search form posted |
56 |
if ( $op eq "cud-do_search" ) { |
56 |
if ( $op eq "do_search" ) { |
57 |
my @marclist = $query->multi_param('marclist'); |
57 |
my @marclist = $query->multi_param('marclist'); |
58 |
my @and_or = $query->multi_param('and_or'); |
58 |
my @and_or = $query->multi_param('and_or'); |
59 |
my @excluding = $query->multi_param('excluding'); |
59 |
my @excluding = $query->multi_param('excluding'); |
60 |
- |
|
|