In the code hook perm is defined as
/**
* Implementation of hook_perm().
*/
function hook_perm() {
return array('access DigiD administration page');
}
this should be
/**
* Implementation of hook_perm().
*/
function digid_perm() {
return array('access DigiD administration page');
}
Comments
Comment #1
rikvd commentedfixed in: digid 6.x-1.0