When we disallow a role to administer content types, "Edit Type" link should be disabled.
I did small adjustment to the code
Before
if (module_exists('content') && user_access('administer nodes') && $options['cck']) {
After
if (module_exists('content') && user_access('administer nodes') && user_access('administer content types') && $options['cck']) {
Comments
Comment #1
visualnotion commentedThank you, totaltheme. Much appreciated.
I confirm this fixed it for me as well. I'm using the dev release now and it didn't have it before I added totaltheme's code.
This should be rolled into the dev release.
Comment #2
joelstein commentedFixed in 6.x-1.x:
http://drupal.org/commitlog/commit/7690/c1758a13fb03dd58e46ebc7cd0e7544b...
A new release should be available shortly.