|
Lines 27-32
use C4::Members;
Link Here
|
| 27 |
use C4::Branch; |
27 |
use C4::Branch; |
| 28 |
use C4::Category; |
28 |
use C4::Category; |
| 29 |
use Koha::Borrower::Modifications; |
29 |
use Koha::Borrower::Modifications; |
|
|
30 |
use Koha::List::Patron; |
| 30 |
|
31 |
|
| 31 |
my $query = new CGI; |
32 |
my $query = new CGI; |
| 32 |
my $branch = $query->param('branchcode'); |
33 |
my $branch = $query->param('branchcode'); |
|
Lines 96-101
$template->param(
Link Here
|
| 96 |
|
97 |
|
| 97 |
$template->param( |
98 |
$template->param( |
| 98 |
alphabet => C4::Context->preference('alphabet') || join (' ', 'A' .. 'Z'), |
99 |
alphabet => C4::Context->preference('alphabet') || join (' ', 'A' .. 'Z'), |
|
|
100 |
patron_lists => [ GetPatronLists() ], |
| 99 |
PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20, |
101 |
PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20, |
| 100 |
); |
102 |
); |
| 101 |
|
103 |
|
| 102 |
- |
|
|