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

visualnotion’s picture

Thank 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.

joelstein’s picture

Status: Active » Fixed

Fixed in 6.x-1.x:
http://drupal.org/commitlog/commit/7690/c1758a13fb03dd58e46ebc7cd0e7544b...

A new release should be available shortly.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.