Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmunir committed Sep 28, 2014
1 parent 61dcf6c commit f3b5717
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion views/permission/create.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* @var $model mdm\admin\models\AuthItem */

$this->title = 'Create Role';
$this->params['breadcrumbs'][] = ['label' => 'Roles', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => 'Permissions', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="auth-item-create">
Expand Down
2 changes: 1 addition & 1 deletion views/permission/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* @var $model mdm\admin\models\AuthItem */

$this->title = 'Update Permission: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Roles', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => 'Permissions', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->name]];
$this->params['breadcrumbs'][] = 'Update';
?>
Expand Down
2 changes: 1 addition & 1 deletion views/permission/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/* @var $model mdm\admin\models\AuthItem */

$this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Roles', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => 'Permissions', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="auth-item-view">
Expand Down

0 comments on commit f3b5717

Please sign in to comment.