Bug 17600: Standardize our EXPORT_OK
[srvgit] / members / discharge.pl
index 7e055c6..e0f4b2d 100755 (executable)
@@ -28,18 +28,17 @@ Allows librarian to edit and/or manage borrowers' discharges
 =cut
 
 use Modern::Perl;
-use Carp;
+use Carp qw( carp );
 
 use CGI qw( -utf8 );
-use C4::Auth;
-use C4::Output;
+use C4::Auth qw( get_template_and_user );
+use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
 use C4::Members;
 use C4::Reserves;
 use C4::Letters;
 use Koha::Patron::Discharge;
 use Koha::Patrons;
 
-use Koha::DateUtils;
 
 my $input = CGI->new;