mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 00:03:37 +08:00
Fix error on discussion page
This commit is contained in:
parent
2be90d1caf
commit
15658a7cbf
|
@ -27,7 +27,7 @@ class Relationship implements ExtenderInterface
|
||||||
|
|
||||||
$parent::addRelationship($this->name, function ($model) {
|
$parent::addRelationship($this->name, function ($model) {
|
||||||
if ($this->type instanceof Closure) {
|
if ($this->type instanceof Closure) {
|
||||||
return $this->type($model);
|
return call_user_func($this->type, $model);
|
||||||
} elseif ($this->type === 'belongsTo') {
|
} elseif ($this->type === 'belongsTo') {
|
||||||
return $model->belongsTo($this->child, null, null, $this->name);
|
return $model->belongsTo($this->child, null, null, $this->name);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user