role|user|group: Open `Audit` tab always in `#col1` and close `#col2`

This commit is contained in:
Johannes Meyer 2021-03-22 16:34:51 +01:00
parent ab7d73a8ee
commit c203ffdd79
3 changed files with 12 additions and 9 deletions

View File

@ -387,7 +387,8 @@ class GroupController extends AuthBackendController
[
'title' => $this->translate('Audit a user\'s or group\'s privileges'),
'label' => $this->translate('Audit'),
'url' => 'role/audit'
'url' => 'role/audit',
'baseTarget' => '_main',
]
);
}

View File

@ -263,7 +263,8 @@ class RoleController extends AuthBackendController
[
'title' => $this->translate('Audit a user\'s or group\'s privileges'),
'label' => $this->translate('Audit'),
'url' => 'role/audit'
'url' => 'role/audit',
'baseTarget' => '_main'
]
);

View File

@ -344,7 +344,8 @@ class UserController extends AuthBackendController
[
'title' => $this->translate('Audit a user\'s or group\'s privileges'),
'label' => $this->translate('Audit'),
'url' => 'role/audit'
'url' => 'role/audit',
'baseTarget' => '_main'
]
);
}