Siropu
Well-known member
- Affected version
- 2.1.5
In
And below it, this:
Entity/ResourceItem.php
line 114 in canView
method, you have this:
PHP:
if (!$this->Category || !$this->Category->canView())
{
return false;
}
And below it, this:
PHP:
if (!$this->hasPermission('view'))
{
return false;
}
$this->Category->canView()
doesn't check for the same permission?