mirror of
https://github.com/flarum/core.git
synced 2025-07-25 18:51:40 +02:00
Fix Laravel 5.1 compat
This commit is contained in:
@@ -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));
|
||||
|
Reference in New Issue
Block a user