@@ -, +, @@ admin pages - Create a new staff user with only catalog and manage_acccounts permissions - Log in with this staff user and go to the admin page - You will see the debit and credit type sections, but won't be able to access them - Apply the patch - Veriy the links still show, but pages are now accessible --- admin/credit_types.pl | 2 +- admin/debit_types.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/admin/credit_types.pl +++ a/admin/credit_types.pl @@ -38,7 +38,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( template_name => "admin/credit_types.tt", query => $input, type => "intranet", - flagsrequired => { parameters => 'parameters_remaining_permissions' }, + flagsrequired => { parameters => 'manage_accounts' }, debug => 1, } ); --- a/admin/debit_types.pl +++ a/admin/debit_types.pl @@ -38,7 +38,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( template_name => "admin/debit_types.tt", query => $input, type => "intranet", - flagsrequired => { parameters => 'parameters_remaining_permissions' }, + flagsrequired => { parameters => 'manage_accounts' }, debug => 1, } ); --