Bug 29660: Unused code in placerequest.pl
[srvgit] / suggestion / add_user_search.pl
index f6758aa..d71d033 100755 (executable)
@@ -18,8 +18,8 @@
 use Modern::Perl;
 
 use CGI qw ( -utf8 );
-use C4::Auth;
-use C4::Output;
+use C4::Auth qw( get_template_and_user );
+use C4::Output qw( output_html_with_http_headers );
 use C4::Members;
 
 use Koha::Patron::Categories;
@@ -49,7 +49,7 @@ my $search_patrons_with_suggestion_perm_only =
     ( $permissions && $permissions eq 'suggestions.suggestions_manage' )
         ? 1 : 0;
 
-my $patron_categories = Koha::Patron::Categories->search_limited;
+my $patron_categories = Koha::Patron::Categories->search_with_library_limits({}, {order_by => ['description']});;
 $template->param(
     patrons_with_suggestion_perm_only => $search_patrons_with_suggestion_perm_only,
     view => ( $input->request_method() eq "GET" ) ? "show_form" : "show_results",