Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Commit

Permalink
[Fix] breadcrumbs uri
Browse files Browse the repository at this point in the history
  • Loading branch information
MrJuliuss committed Nov 29, 2013
1 parent 657a845 commit 3760c13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/controllers/GroupController.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public function getShow($groupId)
$this->layout->breadcrumb = array(
array(
'title' => trans('syntara::breadcrumbs.groups'),
'link' => URL::route('showGroup', $groupId),
'link' => URL::route('listGroups'),
'icon' => 'glyphicon-list-alt'
),
array(
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/PermissionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function getShow($permissionId)
$this->layout->breadcrumb = array(
array(
'title' => trans('syntara::breadcrumbs.permissions'),
'link' => URL::route('showPermission', $permissionId),
'link' => URL::route('listPermissions'),
'icon' => 'glyphicon-ban-circle'
),
array(
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/UserController.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public function getShow($userId)
$this->layout->breadcrumb = array(
array(
'title' => trans('syntara::breadcrumbs.users'),
'link' => URL::route('showUser', $userId),
'link' => URL::route('listUsers'),
'icon' => 'glyphicon-user'
),
array(
Expand Down

0 comments on commit 3760c13

Please sign in to comment.