mirror of
https://github.com/flarum/core.git
synced 2025-07-26 03:01:22 +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
|
// standard 'member' group, as well as any other groups they've been
|
||||||
// assigned to.
|
// assigned to.
|
||||||
if ($this->is_activated) {
|
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));
|
event(new GetUserGroups($this, $groupIds));
|
||||||
|
Reference in New Issue
Block a user