Lines 55-59
$template->param(
Link Here
|
55 |
alphabet => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ), |
55 |
alphabet => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ), |
56 |
categories => [ C4::Category->all ], |
56 |
categories => [ C4::Category->all ], |
57 |
branches => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ], |
57 |
branches => [ map { { branchcode => $_->{branchcode}, branchname => $_->{branchname} } } values %$branches ], |
|
|
58 |
aaSorting => 1, |
58 |
); |
59 |
); |
59 |
output_html_with_http_headers( $input, $cookie, $template->output ); |
60 |
output_html_with_http_headers( $input, $cookie, $template->output ); |
60 |
- |
|
|