0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-05-04 16:20:26 +00:00

Merge branch 'v0.16'

This commit is contained in:
Dan Brown 2017-06-04 15:39:55 +01:00
commit 0528e98d9c
No known key found for this signature in database
GPG key ID: 46D9F943C24A2EF9

View file

@ -259,7 +259,7 @@ class PermissionService
$roleIds = array_map(function($role) {
return $role->id;
}, $roles);
$this->jointPermission->newQuery()->whereIn('id', $roleIds)->delete();
$this->jointPermission->newQuery()->whereIn('role_id', $roleIds)->delete();
}
/**