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
Comment #1
edhel commentedCheck your cache settings in Drupal.
Comment #2
paolo c commentedCache is disabled...
Comment #3
edhel commentedDo you have some modules for node or menu access ?
Comment #4
paolo c commentedI 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.