The problem with admin users is comming from these few lines in admin.comment.php
// 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 );
}
if I change it to
// 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 );
}
then you have only admin access and no super admin access.
If you uncomment the lines - all users are having access to the extension. I must find what is wrong.
About categories - that is fine, but are they included or exluded? Did you select sections too?