@@ -, +, @@ - Add edi_manage to your permissions - Try to access the EDIFACT messages from the acq start page - Verify it doesn't work - Apply patch and try again - You should be able to access the page now - Try to access the other page directly (if you don't have EDI data): /cgi-bin/koha/acqui/edimsg.pl - Verify you can access the page and don't get a permission error --- acqui/edifactmsgs.pl | 2 +- acqui/edimsg.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/acqui/edifactmsgs.pl +++ a/acqui/edifactmsgs.pl @@ -32,7 +32,7 @@ my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user( query => $q, type => 'intranet', authnotrequired => 0, - flagsrequired => { acquisition => 'manage_edi' }, + flagsrequired => { acquisition => 'edi_manage' }, debug => 1, } ); --- a/acqui/edimsg.pl +++ a/acqui/edimsg.pl @@ -32,7 +32,7 @@ my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user( query => $q, type => 'intranet', authnotrequired => 0, - flagsrequired => { acquisition => 'manage_edi' }, + flagsrequired => { acquisition => 'edi_manage' }, debug => 1, } ); --