mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Merge branch 'fix/dot-in-role-names' of git://github.com/cw1998/BookStack into cw1998-fix/dot-in-role-names
This commit is contained in:
commit
efc034bd8d
@ -3,10 +3,10 @@
|
|||||||
@foreach($roles as $role)
|
@foreach($roles as $role)
|
||||||
<div>
|
<div>
|
||||||
@include('components.custom-checkbox', [
|
@include('components.custom-checkbox', [
|
||||||
'name' => $name . '[' . $role->name . ']',
|
'name' => $name . '[' . str_replace('.', 'DOT', $role->name) . ']',
|
||||||
'label' => $role->display_name,
|
'label' => $role->display_name,
|
||||||
'value' => $role->id,
|
'value' => $role->id,
|
||||||
'checked' => old($name . '.' . $role->name) || (!old('name') && isset($model) && $model->hasRole($role->name))
|
'checked' => old($name . '.' . str_replace('.', 'DOT', $role->name)) || (!old('name') && isset($model) && $model->hasRole($role->name))
|
||||||
])
|
])
|
||||||
</div>
|
</div>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Loading…
Reference in New Issue
Block a user