mirror of https://gitee.com/karson/fastadmin.git
修复AdminLog::record的BUG($title传入无效)
parent
7b0689a22d
commit
a45d90a9c8
|
|
@ -45,7 +45,7 @@ class AdminLog extends Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$title = self::$title;
|
$title = !empty($title) ? $title : self::$title;
|
||||||
if (!$title)
|
if (!$title)
|
||||||
{
|
{
|
||||||
$title = [];
|
$title = [];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue