Fix array indent in RoleController::createListTabs()

This commit is contained in:
Eric Lippmann 2015-08-27 14:05:05 +02:00
parent 5c883d902e
commit 3e6a55bc07
1 changed files with 5 additions and 5 deletions

View File

@ -149,15 +149,15 @@ class RoleController extends AuthBackendController
$tabs->add(
'role/list',
array(
'title' => $this->translate(
'baseTarget' => '_main',
'label' => $this->translate('Roles'),
'title' => $this->translate(
'Configure roles to permit or restrict users and groups accessing Icinga Web 2'
),
'label' => $this->translate('Roles'),
'url' => 'role/list',
'baseTarget' => '_main'
'url' => 'role/list'
)
);
return $tabs;
}
}