Skip to content

Commit

Permalink
Fix for element canView() user ACL check.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheesegrits committed Dec 22, 2017
1 parent 08afd8a commit 887866a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/com_fabrik/models/element.php
Expand Up @@ -1036,7 +1036,7 @@ public function canView($view = 'form')

if ($lookUp)
{
$fullName = $lookUp->getFullName(false, true);
$fullName = $lookUp->getFullName(true, true);
$value = $formModel->getElementData($fullName, true);
$this->access->$key = ($this->user->get('id') == $value) ? true : false;
}
Expand Down

0 comments on commit 887866a

Please sign in to comment.