Lines 45-55
my ($template, $loggedinuser, $cookie)
Link Here
|
45 |
|
45 |
|
46 |
my $theme = $input->param('theme') || "default"; |
46 |
my $theme = $input->param('theme') || "default"; |
47 |
|
47 |
|
48 |
my $patron = $input->Vars; |
|
|
49 |
foreach (keys %$patron){ |
50 |
delete $patron->{$_} unless($patron->{$_}); |
51 |
} |
52 |
|
53 |
my $searchmember = $input->param('searchmember'); |
48 |
my $searchmember = $input->param('searchmember'); |
54 |
my $quicksearch = $input->param('quicksearch') // 0; |
49 |
my $quicksearch = $input->param('quicksearch') // 0; |
55 |
|
50 |
|
Lines 82-89
my $view = $input->request_method() eq "GET" ? "show_form" : "show_results";
Link Here
|
82 |
$template->param( |
77 |
$template->param( |
83 |
patron_lists => [ GetPatronLists() ], |
78 |
patron_lists => [ GetPatronLists() ], |
84 |
searchmember => $searchmember, |
79 |
searchmember => $searchmember, |
85 |
branchcode => $patron->{branchcode}, |
80 |
branchcode_filter => $input->param('branchcode_filter'), |
86 |
categorycode => $patron->{categorycode}, |
81 |
categorycode_filter => $input->param('categorycode_filter'), |
87 |
searchtype => $input->param('searchtype') || 'start_with', |
82 |
searchtype => $input->param('searchtype') || 'start_with', |
88 |
searchfieldstype => $searchfieldstype, |
83 |
searchfieldstype => $searchfieldstype, |
89 |
PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20, |
84 |
PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20, |
90 |
- |
|
|