ivanamat / cakephp3-aclmanager

CakePHP 3.x - Acl Manager
MIT License
27 stars 27 forks source link

Broken link for groups-roles-users #27

Closed thiagojeffery closed 6 years ago

thiagojeffery commented 6 years ago

Hi, I installed your Cakephp3-app, which installs this one. When the links are generated in the AclManager panel, the links do not open (only the groups, roles and users, the others are fine).

I made a change to get it right in the Template/Acl/index.ctp line 35 file.

  • Html->link(__('Manage {0}', strtolower($item)), ['controller' => 'Acl', 'action' => 'Permissions', $item]); ?>
  • I changed to:

  • Html->link(__('Manage {0}', strtolower($item)), ['plugin' => false,'controller' => strtolower($item), 'action' => 'index']); ?>
  • thiagojeffery commented 6 years ago

    Sorry, my bad. It was to manage groups, roles and users, not links.