Bug 24860: (QA follow-up) Fix typo in holds queue viewer
[koha-ffzg.git] / admin / cash_registers.pl
index 3f10ed9..db55b2a 100755 (executable)
@@ -21,13 +21,13 @@ use strict;
 use warnings;
 
 use CGI;
-use Try::Tiny;
+use Try::Tiny qw( catch try );
 
-use C4::Auth;
+use C4::Auth qw( get_template_and_user );
 use Koha::Libraries;
 use C4::Koha;
 use C4::Context;
-use C4::Output;
+use C4::Output qw( output_html_with_http_headers );
 use Koha::Cash::Registers;
 
 my $cgi = CGI->new();
@@ -36,8 +36,7 @@ my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
         template_name   => 'admin/cash_registers.tt',
         query           => $cgi,
         type            => 'intranet',
-        authnotrequired => 0,
-        flagsrequired   => { admin => 'edit_cash_registers' },
+        flagsrequired   => { parameters => 'manage_cash_registers' },
     }
 );