mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 04:33:47 +08:00
Fix Laravel 5.1 compat
This commit is contained in:
parent
8065c980d4
commit
34d4a7ed89
|
@ -558,7 +558,7 @@ class User extends Model
|
|||
// standard 'member' group, as well as any other groups they've been
|
||||
// assigned to.
|
||||
if ($this->is_activated) {
|
||||
$groupIds = array_merge($groupIds, [Group::MEMBER_ID], $this->groups->lists('id'));
|
||||
$groupIds = array_merge($groupIds, [Group::MEMBER_ID], $this->groups->lists('id')->all());
|
||||
}
|
||||
|
||||
event(new GetUserGroups($this, $groupIds));
|
||||
|
|
Loading…
Reference in New Issue
Block a user