|
Lines 49-55
my $search_patrons_with_suggestion_perm_only =
Link Here
|
| 49 |
( $permissions && $permissions eq 'suggestions.suggestions_manage' ) |
49 |
( $permissions && $permissions eq 'suggestions.suggestions_manage' ) |
| 50 |
? 1 : 0; |
50 |
? 1 : 0; |
| 51 |
|
51 |
|
| 52 |
my $patron_categories = Koha::Patron::Categories->search_limited; |
52 |
my $patron_categories = Koha::Patron::Categories->search_with_library_limits({}, {order_by => ['description']});; |
| 53 |
$template->param( |
53 |
$template->param( |
| 54 |
patrons_with_suggestion_perm_only => $search_patrons_with_suggestion_perm_only, |
54 |
patrons_with_suggestion_perm_only => $search_patrons_with_suggestion_perm_only, |
| 55 |
view => ( $input->request_method() eq "GET" ) ? "show_form" : "show_results", |
55 |
view => ( $input->request_method() eq "GET" ) ? "show_form" : "show_results", |
| 56 |
- |
|
|