No, using version 3.26.
I changed admin.comment.php from this:
// check access permissions (only superadmins & admins)
if ( !( $acl->acl_check('administration', 'config', 'users', $my->usertype) )
|| $acl->acl_check('administration', 'edit', 'users', $my->usertype, 'components', 'com_comment') ) {
mosRedirect( 'index2.php', _NOT_AUTH );
}
to this:
// check access permissions (only superadmins & admins)
if ( ( $acl->acl_check('administration', 'config', 'users', $my->usertype) )
|| $acl->acl_check('administration', 'edit', 'users', $my->usertype, 'components', 'com_comment') ) {
mosRedirect( 'index2.php', _NOT_AUTH );
}
However, this prevents Super Administrator form having access now...
Is there something I can do to allow both Administrator and Super Administrator access?
Cheers!