Skip to content

Commit

Permalink
Admin menu links to disabled component
Browse files Browse the repository at this point in the history
Joomla 3.8.0 displays com_fields link in menu, ven when com_fields is disabled.
  • Loading branch information
n3t committed Sep 26, 2017
1 parent 07305b0 commit 0e0bdbf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions administrator/modules/mod_menu/menu.php
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,12 @@ protected function preprocess($items)
}
}

// Exclude item if the component is not installed or disabled
if ($item->element && (!JComponentHelper::isInstalled($item->element) || !JComponentHelper::isEnabled($item->element)))
{
continue;
}

// Exclude item if the component is not authorised
$assetName = $item->element;

Expand Down

0 comments on commit 0e0bdbf

Please sign in to comment.