This code is incorrect:

    // User admin callback.
  $any = count(_taxonomy_delegate_my_vocabularies());
  if ($any) {
    $items['category_admin'] = array(
      'title' => '@name',
      'title arguments' => array('@name' => variable_get('taxonomy_delegate_menu', t('Administer My Categories'))),
      'page callback' => 'taxonomy_delegate_mycategories',
      'access arguments' => array('access content'),
      );
  }

This code will not work on various sites. For instance, this not work on my site. Absolutely all users see 404 error.
There must used custom access callback function. See http://drupal.org/node/109157

CommentFileSizeAuthor
taxonomy_delegate_access.patch1.49 KBleksat

Comments

finex’s picture

The patch works fine

mrfelton’s picture

Status: Active » Reviewed & tested by the community

Yep - please commit

verta’s picture

subscribing

mecano’s picture

indeed !

nancydru’s picture

Hmm, I just did a checkout and that code is there. Did you try the -dev version?

mecano’s picture

nope plain 6.x-1.3 version just as the issue states

nancydru’s picture

Please try the -dev version (especially the one rolling out tonight).

gaellafond’s picture

subscribing

joachim’s picture

Confirming the dev version has this bug fixed.

Please could we have a release with this fix?