I installed the drupal 5 release and I'm doing some test. Apparenty rules are applied to administrator user only: anonymous and any other user do not see the modified breadcrumb.s I think I'm missing something obvious. Do I have to enable the rules on user/role basis?

Thanks

Paolo

Comments

edhel’s picture

Check your cache settings in Drupal.

paolo c’s picture

Cache is disabled...

edhel’s picture

Do you have some modules for node or menu access ?

paolo c’s picture

I have taxonomy access control.
I found out that users in one of the roles I defined can see the modified breadcrumbs. Now I'm trying to find which permission make the difference.

Got it: it works only if the user has got the "list permission" (from tac) on the terms checked by the rule. It seems that rules are applied on $node after $node been processed by tac, which probably removes terms from $node->taxonomy (wild guess).

So the solution would be to give the list permission to everybody, but on my site I want $term to be visible (printed in the page) to some users but not to all users.