mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Fixed #4300 - Fix for illegal character type in action log
This commit is contained in:
parent
5d4bbc393e
commit
7fae380ab6
|
@ -58,7 +58,7 @@ class ActionlogPresenter extends Presenter
|
||||||
|
|
||||||
|
|
||||||
public function actionType() {
|
public function actionType() {
|
||||||
return strtolower(trans('general.'.str_replace(' ', '_', $this->action_type)));
|
return mb_strtolower(trans('general.'.str_replace(' ', '_', $this->action_type)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue