Thanks Cheryl,
I have the main menu item as special, and the article as special. The main menu shows up, along with this tab marked as special, all the time.
I’ve set user group id’s to something other than registered or public (so by default special) and no matter what I do, all the main menu items are always displayed.
Looking into the code, it appears there is a problem with this template using the J 1.5 security layer?
The issue is in file:
templates//ja_hedera/ja_menus/Base.class.php
on or about line 39
$this->items = array();
$aid = $user->get(‘gid’,0);
foreach ($rows as $index => $v) {
//jcr this is cause of menu bug
if ($v->access <= $aid) {
$v->access is the access level for the menu from the jos_menu table (0,1, or 2) and $aid is the gid value from the jos_users table which maps to jos_core_acl_aro_groups. As coded this will not work. Somehow it needs to map to the jos_group table but I am not seeing how this mapping is set up.
Kyle